1. 5e37d79 Description of args to IMAP4.store() in imaplib by Fred Drake · 20 years ago
  2. 1400424 Clean up discussion of new C thread idiom (closes SF patch #1031233; modified) by Fred Drake · 20 years ago
  3. b184ae8 fix a bunch of spelling errors (closes SF patch #1104868) by Fred Drake · 20 years ago
  4. 9f79dbf remove spurious line from widget variables example (closes SF patch #1094815) by Fred Drake · 20 years ago
  5. 6af4498 1. Polish tabbing code. by Kurt B. Kaiser · 20 years ago
  6. 75eabd2 Change the name of the macro used by --with-tsc builds to the less by Michael W. Hudson · 20 years ago
  7. 46e6d92 tweaks, small updates by Michael W. Hudson · 20 years ago
  8. 969f485 -X died some time ago; remove a tiny bit of associated cruft. by Michael W. Hudson · 20 years ago
  9. b00e89f If an extension can't be loaded, print warning and skip it instead of by Kurt B. Kaiser · 20 years ago
  10. ff59f3c make thread stack size compile-time tunable on OS/2, increase main stack by Andrew MacIntyre · 20 years ago
  11. 2bea474 make thread stack size compile-time tunable on OS/2 by Andrew MacIntyre · 20 years ago
  12. 0588581 Document the reconvert module. by Skip Montanaro · 20 years ago
  13. 891a1ba allow triple-quoted string output from reconvert.quote() by Skip Montanaro · 20 years ago
  14. 5954623 Patch #1100140: improved smtp connect debugging by Johannes Gijsbers · 20 years ago
  15. fe33d0b Default stat_float_times to true. by Martin v. Löwis · 20 years ago
  16. 22b457e Added SEEK_* constants. Fixes #711830. by Martin v. Löwis · 20 years ago
  17. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  18. fee7b93 Use decorators. by Guido van Rossum · 20 years ago
  19. 75b64e6 Use decorators. by Guido van Rossum · 20 years ago
  20. 9ba3684 Gave the new datetime.strptime() a versionadded blurb. by Tim Peters · 20 years ago
  21. 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
  22. f69d94f Moved reader \r and \n processing from the iterator to the state machine - by Andrew McNamara · 20 years ago
  23. a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
  24. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  25. 2f8c658 fix typo by Fred Drake · 20 years ago
  26. d7c27be remove unused variable by Fred Drake · 20 years ago
  27. 8231de0 Many updates to csv module doco. by Andrew McNamara · 20 years ago
  28. 5cfd837 Improve wording of parser error message. by Andrew McNamara · 20 years ago
  29. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  30. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  31. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  32. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  33. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  34. a08eecb Add news about csv module updates. by Andrew McNamara · 20 years ago
  35. af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
  36. cf0fd5a Add belt and braces check of PyString_AsString return. by Andrew McNamara · 20 years ago
  37. 1b6f398 Improve error handling when .idlerc can't be created. by Kurt B. Kaiser · 20 years ago
  38. d4f5b07 Add duck-typing to the glossary. by Raymond Hettinger · 20 years ago
  39. faa10eb SF bug #1099516: tempfile files not types.FileType by Raymond Hettinger · 20 years ago
  40. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  41. 29bf4e4 Now that internal dialect type is immutable, and the dialect registry by Andrew McNamara · 20 years ago
  42. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  43. 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
  44. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  45. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  46. 91b9746 Factor out the code for making a dialect instance. by Andrew McNamara · 20 years ago
  47. dbce261 Only set error string when dict lookup found no matching key (was setting by Andrew McNamara · 20 years ago
  48. b497c10 Whitespace normalization. by Tim Peters · 20 years ago
  49. a829263 When parsing args that return a single character, treat null string the by Andrew McNamara · 20 years ago
  50. 37d2bdf Where a string is desired, test for PyBaseString_Type derived type, by Andrew McNamara · 20 years ago
  51. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 20 years ago
  52. c0b194a Bug #489256: remove out of date and out of place profile.doc, and let by Johannes Gijsbers · 20 years ago
  53. 77ead87 Add missing PyObject_GC_Track and PyObject_GC_UnTrack calls to csv reader and by Andrew McNamara · 20 years ago
  54. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  55. 41e4faa Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as by Johannes Gijsbers · 20 years ago
  56. cdd625a Patch #1095362: replace hardcoded test for POST/GET with call to get_method, by Johannes Gijsbers · 20 years ago
  57. 2abe785 Move code in __name__ == '__main__' block into main() function, rewrite code so by Johannes Gijsbers · 20 years ago
  58. 97613ad Patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown: by Johannes Gijsbers · 20 years ago
  59. 158df10 Bug #1098497: various small typo's, grammar and markup nits. by Johannes Gijsbers · 20 years ago
  60. c9a4762 comment tweak by Skip Montanaro · 20 years ago
  61. afd77d9 Add definitions for "up" and "down" commands that print/display the current by Skip Montanaro · 20 years ago
  62. 9ddb300 Patch #936774: unify the display of data descriptors, including slots, by Johannes Gijsbers · 20 years ago
  63. 9a98364 Replace rfc822.parseaddr with email.Utils.parseaddr. The implementation is by Johannes Gijsbers · 20 years ago
  64. c7fc10a Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetools by Johannes Gijsbers · 20 years ago
  65. a3beee1 Clean up tests by reusing functions from other modules: by Johannes Gijsbers · 20 years ago
  66. 836f543 Patch #943206: by Johannes Gijsbers · 20 years ago
  67. e4172ea Patch #1094015: by Johannes Gijsbers · 20 years ago
  68. 711906e threading._DummyThread.__init__(): document obscure new code. by Tim Peters · 20 years ago
  69. 84d5489 Converted to a unittest. Added checks that the bounded semaphore actually by Tim Peters · 20 years ago
  70. e6539c4 In _DummyThread objects the lock stored in __block (allocated thanks to by Brett Cannon · 20 years ago
  71. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  72. 664b43b Re-running python with/without the -Qnew flag uses incorrectly optimized by Armin Rigo · 20 years ago
  73. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  74. e4f5600 [Bug 1083177] Describe signal() change; add a link by Andrew M. Kuchling · 20 years ago
  75. 1dd087c Allow relative URLs for included databases and packages. by Jack Jansen · 20 years ago
  76. da49e19 Patch #1097739 by Bob Ippolito: by Jack Jansen · 20 years ago
  77. 5a3c7c3 Oops, there was a tab in there. by Jack Jansen · 20 years ago
  78. 30620ac Workaround for the fact that urllib2 doesn't default to "file:" urls. by Jack Jansen · 20 years ago
  79. c110f86 Always set CONFIGURE_MACOSX_DEPLOYMENT_TARGET otherwise it may be set by Jack Jansen · 20 years ago
  80. 97db05d SF #75103: imghdr -- identify JPEGs in EXIF format by Raymond Hettinger · 20 years ago
  81. dd3e6cb Fix to use PEP7 brace style. by Andrew McNamara · 20 years ago
  82. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  83. 72b83c8 SF patch 1094011: Docs for file() vs open(). by Raymond Hettinger · 20 years ago
  84. bccc9a9 Added example to os.stat() by Facundo Batista · 20 years ago
  85. 17a7924 SF bug #1091740: garbage collector still documented as optional by Raymond Hettinger · 20 years ago
  86. 575a00b Delete Reader_getiter and replace with PyObject_SelfIter. by Andrew McNamara · 20 years ago
  87. becbdec add two missing items by Skip Montanaro · 20 years ago
  88. b80bad4 add descriptions of exported data attributes by Skip Montanaro · 20 years ago
  89. 4f49e7d describe reset() by Skip Montanaro · 20 years ago
  90. bb0c9dc add a couple missing items by Skip Montanaro · 20 years ago
  91. f26285c add a couple missing docstrings by Skip Montanaro · 20 years ago
  92. 31043cd Clarify that DictMixin is still useful. Only the UserDict class was supplanted. by Raymond Hettinger · 20 years ago
  93. d61788b Fix typo. by Martin v. Löwis · 20 years ago
  94. af304a6 - Added an "installer" flavor, which uses the "open" command to install by Jack Jansen · 20 years ago
  95. 362b929 Removed unused line. by Raymond Hettinger · 20 years ago
  96. 0c26ab0 Removed unused line. by Raymond Hettinger · 20 years ago
  97. 4483771 Since it is a possibility that LDFLAGS or CPPFLAGS were set with options that by Brett Cannon · 20 years ago
  98. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  99. 6458598 Create the wrapper scripts for gcc/g++ too. by Jack Jansen · 20 years ago
  100. f791d7a On UNIX, when the execution of the child fails, we must waitpid() to by Peter Astrand · 20 years ago