1. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 19 years ago
  2. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 19 years ago
  3. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 19 years ago
  4. bfd7d6a Fix typo by Andrew M. Kuchling · 19 years ago
  5. d38ddf4 Patch from Leandro Lucarella: replaced: by Peter Astrand · 19 years ago
  6. 508e81e Convert splitlines to for-loop (handles case where input does not have a trailing newline). by Raymond Hettinger · 19 years ago
  7. a9620d1 Fix stupid typo: Don't read from a writer. by Walter Dörwald · 19 years ago
  8. bb5fbc4 Wholistic code cleanup / modernization: by Raymond Hettinger · 19 years ago
  9. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 19 years ago
  10. fe59dc1 Revert previous checkin. by Raymond Hettinger · 19 years ago
  11. f715366 Reduce the usage of the types module. by Raymond Hettinger · 19 years ago
  12. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 19 years ago
  13. dbecd93 Replace list of constants with tuples of constants. by Raymond Hettinger · 19 years ago
  14. f7bf02d SF patch #1028908 (John J Lee) by Raymond Hettinger · 19 years ago
  15. bab4143 SF patch #1116583: NameError in cookielib domain check by Raymond Hettinger · 19 years ago
  16. 1f1d252 Add a test for UTF-16 reading where the byte sequence doesn't start with a BOM. by Walter Dörwald · 19 years ago
  17. 07561b3 Recompiled after source changes. by Thomas Heller · 19 years ago
  18. e4772f3 fix XMLFilterBase.resolveEntity() so the caller gets the result by Fred Drake · 19 years ago
  19. d064142 Security fix PSF-2005-001 for SimpleXMLRPCServer.py. by Guido van Rossum · 19 years ago
  20. 0676dfd Add config-main.def option to make the 'history' feature non-cyclic. by Kurt B. Kaiser · 19 years ago
  21. 69b8caa Simplify string comparison using startswith() by Steve Holden · 19 years ago
  22. acdef85 Removed ability to configure tabs indent from Options dialog. This 'feature' by Kurt B. Kaiser · 19 years ago
  23. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 19 years ago
  24. 3069dbb Add keybindings for del-word-left and del-word-right. by Kurt B. Kaiser · 19 years ago
  25. 90cece7 Fixed typo in verbose output. by Brett Cannon · 19 years ago
  26. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 19 years ago
  27. 926d45b shutil.copytree: move copystat call for the directory after the loop by Johannes Gijsbers · 19 years ago
  28. 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 19 years ago
  29. 1083c24 Add a slice test with high < low. by Walter Dörwald · 19 years ago
  30. 1d1eac3 Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options. by Thomas Heller · 19 years ago
  31. 6af4498 1. Polish tabbing code. by Kurt B. Kaiser · 19 years ago
  32. b00e89f If an extension can't be loaded, print warning and skip it instead of by Kurt B. Kaiser · 19 years ago
  33. 891a1ba allow triple-quoted string output from reconvert.quote() by Skip Montanaro · 19 years ago
  34. 5954623 Patch #1100140: improved smtp connect debugging by Johannes Gijsbers · 19 years ago
  35. 22b457e Added SEEK_* constants. Fixes #711830. by Martin v. Löwis · 19 years ago
  36. 5a8a037 Use descriptors. by Guido van Rossum · 19 years ago
  37. fee7b93 Use decorators. by Guido van Rossum · 19 years ago
  38. 75b64e6 Use decorators. by Guido van Rossum · 19 years ago
  39. 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
  40. a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
  41. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  42. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  43. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  44. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  45. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  46. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  47. af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
  48. 1b6f398 Improve error handling when .idlerc can't be created. by Kurt B. Kaiser · 20 years ago
  49. faa10eb SF bug #1099516: tempfile files not types.FileType by Raymond Hettinger · 20 years ago
  50. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  51. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  52. 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
  53. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  54. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  55. b497c10 Whitespace normalization. by Tim Peters · 20 years ago
  56. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 20 years ago
  57. c0b194a Bug #489256: remove out of date and out of place profile.doc, and let by Johannes Gijsbers · 20 years ago
  58. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  59. 41e4faa Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as by Johannes Gijsbers · 20 years ago
  60. cdd625a Patch #1095362: replace hardcoded test for POST/GET with call to get_method, by Johannes Gijsbers · 20 years ago
  61. 2abe785 Move code in __name__ == '__main__' block into main() function, rewrite code so by Johannes Gijsbers · 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. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  73. 1dd087c Allow relative URLs for included databases and packages. by Jack Jansen · 20 years ago
  74. 97db05d SF #75103: imghdr -- identify JPEGs in EXIF format by Raymond Hettinger · 20 years ago
  75. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  76. f26285c add a couple missing docstrings by Skip Montanaro · 20 years ago
  77. af304a6 - Added an "installer" flavor, which uses the "open" command to install by Jack Jansen · 20 years ago
  78. 362b929 Removed unused line. by Raymond Hettinger · 20 years ago
  79. 0c26ab0 Removed unused line. by Raymond Hettinger · 20 years ago
  80. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  81. f791d7a On UNIX, when the execution of the child fails, we must waitpid() to by Peter Astrand · 20 years ago
  82. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
  83. ed2dbe3 SF patch #1094007: Remove witty comment in pydoc.py by Raymond Hettinger · 20 years ago
  84. 346e67f SF patch #1051395: locale.getdefaultlocale does not return tuple in some OS by Raymond Hettinger · 20 years ago
  85. f871d83 Remove some lambdas. by Raymond Hettinger · 20 years ago
  86. a617271 Use cStringIO where available. by Raymond Hettinger · 20 years ago
  87. ee1d247 Add a test that checks the basic functionality of every encoding. by Walter Dörwald · 20 years ago
  88. 6cea693 Fix wrong variable name. by Walter Dörwald · 20 years ago
  89. e1a0391 Fix wrong variable name. by Walter Dörwald · 20 years ago
  90. 702af67 - getDefaultDatabase wasn't listed in __all__. by Jack Jansen · 20 years ago
  91. 3b585b3 [Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case by Andrew M. Kuchling · 20 years ago
  92. c77f6df Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot by Jack Jansen · 20 years ago
  93. be95462 After discussion on the PythonMac-SIG it was decided that it is better by Jack Jansen · 20 years ago
  94. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  95. e852c19 Improve error message if rpc'l localcall() fails with unexpected exception. by Kurt B. Kaiser · 20 years ago
  96. 5c3df35 The GUI was hanging if the shell window was closed while a raw_input() by Kurt B. Kaiser · 20 years ago
  97. ee4bb66 Recompiled after source changes. by Thomas Heller · 20 years ago
  98. b300ae3 Two small changes, SF bug #974757 and SF patch #1037974. by Jeremy Hylton · 20 years ago
  99. 6414cd8 SF patch #1055159 via Titus Brown: Document redirect limitation. by Jeremy Hylton · 20 years ago
  100. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago