1. fb9d787 Change the ctypes version number to "1.1.0". by Thomas Heller · 18 years ago
  2. 85a2192 Verify the sizes of the basic ctypes data types against the struct module. by Thomas Heller · 18 years ago
  3. 1211edd Added a docstring by Vinay Sajip · 18 years ago
  4. 825b75a Bug #1627575: Added _open() method to FileHandler which can be used to reopen files. The FileHandler instance now saves the encoding (which can be None) in an attribute called "encoding". by Vinay Sajip · 18 years ago
  5. 2cd79f6 Bare except clause removed from LogRecord.__init__. Now, only ValueError, TypeError and AttributeError are trapped. by Vinay Sajip · 18 years ago
  6. c683a87 Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is trapped. by Vinay Sajip · 18 years ago
  7. 51c2f6c Fix zero-length corner case for iterating over a mutating deque. by Raymond Hettinger · 18 years ago
  8. 1812f8c Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. by Peter Astrand · 18 years ago
  9. ec05a2d Re-implemented fix for #1531862 once again, in a way that works with Python 2.2. Fixes bug #1603424. by Peter Astrand · 18 years ago
  10. 9c3a392 [Patch #1520904] Fix bsddb tests to write to the temp directory instead of the Lib/bsddb/test directory by Andrew M. Kuchling · 18 years ago
  11. 8826804 [Bug #1622533] Make docstrings raw strings because they contain control characters (\0, \1) by Andrew M. Kuchling · 18 years ago
  12. 8b96a35 Support linking of the bsddb module against BerkeleyDB 4.5.x by Gregory P. Smith · 18 years ago
  13. 7b7c9d4 Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, by Martin v. Löwis · 18 years ago
  14. 769a40a Fix stability of heapq's nlargest() and nsmallest(). by Raymond Hettinger · 18 years ago
  15. 92d54d5 Add EnvironmentVarGuard to test.test_support. Provides a context manager to by Brett Cannon · 18 years ago
  16. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 18 years ago
  17. a186ee2 SF bug #1623890, fix argument name in docstring by Neal Norwitz · 18 years ago
  18. a7ba6fc Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. by Lars Gustäbel · 18 years ago
  19. 7166232 [Rest of patch #1182394] Add ._current() method so that we can use the written-in-C .hexdigest() method by Andrew M. Kuchling · 18 years ago
  20. a7ebb33 [Part of patch #1182394] Move the HMAC blocksize to be a class-level by Andrew M. Kuchling · 18 years ago
  21. a4b2381 Patch #1262036: Prevent TarFiles from being added to themselves under by Lars Gustäbel · 18 years ago
  22. 6baa502 Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() by Lars Gustäbel · 18 years ago
  23. 55c54a2 Frak; this test also fails by Andrew M. Kuchling · 18 years ago
  24. f2881e8 Darn; this test works when you run test_pty.py directly, but fails when regrtest runs it (the os.read() raises os.error). I can't figure out the cause, so am commenting out the test. by Andrew M. Kuchling · 18 years ago
  25. 4281902 [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a directory URL is missing the trailing slash; this lets relative links work. by Andrew M. Kuchling · 18 years ago
  26. ee0e6d1 [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect; by Andrew M. Kuchling · 18 years ago
  27. 3fa5e6e [Bug #776202] Apply Walter Doerwald's patch to use text mode for encoded files by Andrew M. Kuchling · 18 years ago
  28. 9ef0ef5 [Bug #802128 continued] Modify mode depending on the process umask. by Andrew M. Kuchling · 18 years ago
  29. dc26758 [Bug #802128] Make the mode argument of dumbdbm actually work the way it's by Andrew M. Kuchling · 18 years ago
  30. b29069d [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in sub-directories by Andrew M. Kuchling · 18 years ago
  31. eca4c31 [Apply length-checking.diff from bug #1599254] by Andrew M. Kuchling · 18 years ago
  32. ded1c4d Testcase for patch #1484695. by Georg Brandl · 18 years ago
  33. 94547f7 Bug #1590891: random.randrange don't return correct value for big number by Raymond Hettinger · 18 years ago
  34. ebbeed7 Patch #1484695: The tarfile module now raises a HeaderError exception by Georg Brandl · 18 years ago
  35. 29ff461 [Patch #1587139 by kxroberto] Protect lock acquisition/release with by Andrew M. Kuchling · 18 years ago
  36. c911e91 [Patch #1600491 from Jim Jewett] Describe how to build help files on Windows by Andrew M. Kuchling · 18 years ago
  37. 5227857 [Patch #1617413 from Dug Song] Fix HTTP Basic authentication via HTTPS by Andrew M. Kuchling · 18 years ago
  38. 8fe2d20 [Patch #1618455 by Ben Maurer] Improve speed of HMAC by using str.translate() by Andrew M. Kuchling · 18 years ago
  39. e3a985f Make sre's SubPattern objects accept slice objects like it already accepts by Thomas Wouters · 18 years ago
  40. c3200b9 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112. by Kurt B. Kaiser · 18 years ago
  41. 1646568 [Patch #1599256 from David Watson] check that os.fsync is available before using it by Andrew M. Kuchling · 18 years ago
  42. 6d9520c Add test.test_support.guard_warnings_filter . This function returns a context by Brett Cannon · 18 years ago
  43. c745df8 Remove unneeded imports of 'warnings'. by Brett Cannon · 18 years ago
  44. 905820c Remove an unneeded import of 'warnings'. by Brett Cannon · 18 years ago
  45. da1ad32 Fix typo. by Walter Dörwald · 18 years ago
  46. 66a1726 Patch by "cuppatea" (SF #1503765) by Vinay Sajip · 18 years ago
  47. 5492e17 Patch by Jeremy Katz (SF #1609407) by Vinay Sajip · 18 years ago
  48. f54a63b Move errno imports back to individual functions. by Georg Brandl · 18 years ago
  49. b130743 Patch #1608267: fix a race condition in os.makedirs() is the directory by Georg Brandl · 18 years ago
  50. c789f34 Add test for SF bug 1576657 by Raymond Hettinger · 18 years ago
  51. 8211297 Fix a bad assumption that all objects assigned to '__loader__' on a module by Brett Cannon · 18 years ago
  52. 87fa559 Patch #1610437: fix a tarfile bug with long filename headers. by Georg Brandl · 18 years ago
  53. d149d0c - Fix build failure on kfreebsd and on the hurd. by Matthias Klose · 18 years ago
  54. a00bcac Patch #1371075: Make ConfigParser accept optional dict type by Martin v. Löwis · 18 years ago
  55. 8609da9 Move IDLE news into NEWS.txt. by Martin v. Löwis · 18 years ago
  56. 8a7e76b Add name to credits (for untokenize). by Raymond Hettinger · 18 years ago
  57. f008203 Move xdrlib tests from the module into a separate test script, by Walter Dörwald · 18 years ago
  58. 21d900f Bug #1603321: make pstats.Stats accept Unicode file paths. by Georg Brandl · 18 years ago
  59. 25d208b Fix bug #1598620: A ctypes structure cannot contain itself. by Thomas Heller · 18 years ago
  60. a3c7767 ... and the number of the counting shall be three. by Raymond Hettinger · 18 years ago
  61. f390442 a test for an error condition not covered by existing tests by Michael W. Hudson · 18 years ago
  62. 39b8b6a Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig')) by Walter Dörwald · 18 years ago
  63. 4ebbefe Patch #1362975: Rework CodeContext indentation algorithm to by Martin v. Löwis · 18 years ago
  64. 10cdb74 Oops, convert tabs to spaces by Neal Norwitz · 18 years ago
  65. 4fe4423 Bug #1599782: Fix segfault on bsddb.db.DB().type(). by Neal Norwitz · 18 years ago
  66. 5dba6f7 Jython compatibility fix: if uu.decode() opened its output file, be sure to by Andrew M. Kuchling · 18 years ago
  67. 0752935 Patch #1070046: Marshal new-style objects like InstanceType in xmlrpclib. by Martin v. Löwis · 18 years ago
  68. 9eec51c Add a test case of data w/ bytes > 127 by Andrew M. Kuchling · 18 years ago
  69. cffcc8b Make cStringIO.truncate raise IOError for negative by Martin v. Löwis · 18 years ago
  70. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 18 years ago
  71. db4f255 Expand checking in test_sha by Andrew M. Kuchling · 18 years ago
  72. bba003e Patch #1472877: Fix Tix subwidget name resolution. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  73. ef5fd3e Patch #1594554: Always close a tkSimpleDialog on ok(), even by Martin v. Löwis · 18 years ago
  74. c73a4a4 Patch #1538878: Don't make tkSimpleDialog dialogs transient if by Martin v. Löwis · 18 years ago
  75. 8c456f3 Remove file-locking in MH.pack() method. by Andrew M. Kuchling · 18 years ago
  76. 25aabf4 Bug #1588217: don't parse "= " as a soft line break in binascii's by Georg Brandl · 18 years ago
  77. 5408211 Bug #1597824: return the registered function from atexit.register() by Georg Brandl · 18 years ago
  78. 45cd4ff Patch #1360200: Use unmangled_version RPM spec field to deal with by Martin v. Löwis · 18 years ago
  79. 36cbc08 Patch #1359217: Ignore 2xx response before 150 response. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  80. 065f0c8 Patch #1355023: support whence argument for GzipFile.seek. by Martin v. Löwis · 18 years ago
  81. 040a927 Patch #1065257: Support passing open files as body in HTTPConnection.request(). by Martin v. Löwis · 18 years ago
  82. 305e778 Fix SF#1566719: not creating site-packages (or other target directory) when by Phillip J. Eby · 18 years ago
  83. 978d828 [Patch #1514543] mailbox (Maildir): avoid losing messages on name clash by Andrew M. Kuchling · 18 years ago
  84. b5686da [Patch #1514544 by David Watson] use fsync() to ensure data is really on disk by Andrew M. Kuchling · 18 years ago
  85. a3e5d37 [Bug #1569790] mailbox.Maildir.get_folder() loses factory information by Andrew M. Kuchling · 18 years ago
  86. 038cad7 Patch #1592250: Add elidge argument to Tkinter.Text.search. by Martin v. Löwis · 18 years ago
  87. b2bba73 Patch #838546: Make terminal become controlling in pty.fork(). by Martin v. Löwis · 18 years ago
  88. 5361e9a Patch #1351744: Add askyesnocancel helper for tkMessageBox. by Martin v. Löwis · 18 years ago
  89. 3a62404 Correctly forward exception in instance_contains(). by Martin v. Löwis · 18 years ago
  90. 85dbec6 Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 18 years ago
  91. 5310e50 - Patch #1060577: Extract list of RPM files from spec file in by Martin v. Löwis · 18 years ago
  92. abd8a33 Whitespace normalization. by Tim Peters · 18 years ago
  93. ef7f3bf Change to improve speed of _fixupChildren by Vinay Sajip · 18 years ago
  94. 1ead698 I'm assuming this is correct, it fixes the tests so they pass again by Neal Norwitz · 18 years ago
  95. 98c70ac Add tests for incremental codecs with an errors argument. by Walter Dörwald · 18 years ago
  96. 92911bf Add tests for basic argument errors. by Walter Dörwald · 18 years ago
  97. 7d00099 Move the check for openpty to the beginning. by Georg Brandl · 18 years ago
  98. 59ba429 Remove leftover test output file. by Georg Brandl · 18 years ago
  99. cd97208 Convert test_openpty to unittest. by Georg Brandl · 18 years ago
  100. e8328ba Convert test_MimeWriter to unittest. by Georg Brandl · 18 years ago