1. c86c24e Bump the version number for the standalone mimelib package. by Barry Warsaw · 21 years ago
  2. 622d60b test_rfc2231_no_language_or_charset_in_filename(), by Barry Warsaw · 21 years ago
  3. 6208369 get_param(): Update the docstring to explain how CHARSET and LANGUAGE by Barry Warsaw · 21 years ago
  4. 0b6f0d8 decode_rfc2231(): We need to urllib.unquote() the value even if the by Barry Warsaw · 21 years ago
  5. 6a18012 Improvements to set.py: by Raymond Hettinger · 21 years ago
  6. 1954035 Keep doctests in sync with the docs. by Raymond Hettinger · 21 years ago
  7. ee562fc Make sets.py compatible with Py2.2 by Raymond Hettinger · 21 years ago
  8. c8cb5d9 Make a copy of L before appending, so the global L remains by Walter Dörwald · 21 years ago
  9. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  10. b785518 IDLE didn't start correctly when Python was installed in "Program Files" by Kurt B. Kaiser · 21 years ago
  11. 69f31eb [Patch #739124] Add use_default_colors() to curses module by Andrew M. Kuchling · 21 years ago
  12. a54b92b Add a unicode prefix to the characters in the UnicodeEncodeError and by Walter Dörwald · 21 years ago
  13. fd196bd Enhance message for UnicodeEncodeError and UnicodeTranslateError. by Walter Dörwald · 21 years ago
  14. c83124a Fix bug in test_bad_timezone where test was assuming locale knew of PDT. by Brett Cannon · 21 years ago
  15. b2f89ee Comment typo fixes by Andrew M. Kuchling · 21 years ago
  16. 0fd54d8 Unconditionally opening the temp file in text mode causes this test to fail by Jason Tishler · 21 years ago
  17. a290e3d Bug fix for #780461: 'sysu' gestalt selector is meaningless on MacOSX, by Jack Jansen · 21 years ago
  18. 5187a3b Fix handling of bad locale setup where time.tzname[0] == time.tzname[1] and by Brett Cannon · 21 years ago
  19. 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
  20. 39a682f Add HIDDEN. Fixes #777664. by Martin v. Löwis · 21 years ago
  21. cffb9de SF patch #747364: BaseHTTPServer doesn't need StringIO intermediary by Raymond Hettinger · 21 years ago
  22. 3f42a6d IDLEfork Bug 782759 backported to 23-maint by Kurt B. Kaiser · 21 years ago
  23. 5475f23 SF bug #770485: cStringIO does not set closed attr by Raymond Hettinger · 21 years ago
  24. b5a4208 Modified itertools.izip() to match the behavior of __builtin__.zip() by Raymond Hettinger · 21 years ago
  25. 77fe69b Re-sync doc tests with the doc updates. by Raymond Hettinger · 21 years ago
  26. f5c96fb Fix docstring in LocaleTime. by Brett Cannon · 21 years ago
  27. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  28. 7edd0a9 Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename. by Mark Hammond · 22 years ago
  29. 5301d9c Remove useless import. by Walter Dörwald · 22 years ago
  30. b27cca6 Check both __div__ and __truediv__ in division tests. (From SF patch #543867) by Walter Dörwald · 22 years ago
  31. f8a52d3 Removed deprecated functions by Raymond Hettinger · 22 years ago
  32. 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 22 years ago
  33. 8db4403 Correct URL of normalization file. Fixes #781065. Will backport to 2.3. by Martin v. Löwis · 22 years ago
  34. 249d50a Make sure eol_convention is an ASCII string. Fixes #774680. by Martin v. Löwis · 22 years ago
  35. 474335c Re-introduce caching of TimeRE and compiled regexes with added thread-safety. by Brett Cannon · 22 years ago
  36. 8ab27df Touch-up to docstrings. by Brett Cannon · 22 years ago
  37. ed9bf12 protect against test problems with Jython by Skip Montanaro · 22 years ago
  38. d5cf0b8 added test for bug 782369 by Skip Montanaro · 22 years ago
  39. c1b4154 more extension marshal tests and conversion to unittest - was surprised to by Skip Montanaro · 22 years ago
  40. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 22 years ago
  41. 220fecf Added a banner to the shell startup message discussing possible by Kurt B. Kaiser · 22 years ago
  42. 7fbc304 Update for release. by Kurt B. Kaiser · 22 years ago
  43. 2c24d42 Fixes bug of having default argument for TimeRE's __init__ that caused the by Brett Cannon · 22 years ago
  44. 175ddb5 Remove caching of TimeRE (and thus LocaleTime) instance. Error was being by Brett Cannon · 22 years ago
  45. 6145a62 1. Python Bug 775541: Calltips error when docstring is None. Introduced by Kurt B. Kaiser · 22 years ago
  46. 5943b4a Restored commented-out line checked in by mistake. by Tim Peters · 22 years ago
  47. 9390dd5 locale-restoration code: Don't leave comparison to None implicit. For by Tim Peters · 22 years ago
  48. 36f7e93 Fred wasn't kidding -- there really are docs for the locale module <wink>. by Tim Peters · 22 years ago
  49. d1deac0 Fix error in test of not comparing against 0 item of a list by Brett Cannon · 22 years ago
  50. c23f39c Patch #775784: YA Cygwin expected regression test skip patch by Jason Tishler · 22 years ago
  51. 354e3d9 Change the zipimport implementation to accept files containing by Thomas Heller · 22 years ago
  52. 5d6ceb4 more generic reference to python interpreter by Skip Montanaro · 22 years ago
  53. 291f14e Windows fix: When PYTHONCASEOK is set, or for any other reason imports by Tim Peters · 22 years ago
  54. e3ea281 readerThread(): Add max_retries to both DeadlockWrap() calls. This by Barry Warsaw · 22 years ago
  55. 749f481 Backport from r23c1-branch: by Jack Jansen · 22 years ago
  56. e676c5e test01_join(): Fix a test failure when run with "python -O". The by Barry Warsaw · 22 years ago
  57. 6d58bf6 Repair operator error. by Jeremy Hylton · 22 years ago
  58. bdf3b50 SF patch 773476: NameError when there are no prefixes. by Jeremy Hylton · 22 years ago
  59. a920a88 up the b/w compatibility requirement to 2.2 by Just van Rossum · 22 years ago
  60. 969a700 Make sure mimetypes is reinitialized before running the tests. by Jeremy Hylton · 22 years ago
  61. 096d986 Restore the locale to "C" on exit. by Jeremy Hylton · 22 years ago
  62. bd9f520 Reflow long line. by Jeremy Hylton · 22 years ago
  63. 2d4e988 back out the darwin supports_unicode_filenames patch; it causes deep problems with the tests by Just van Rossum · 22 years ago
  64. e9a92aa Patch from John Anderson to enable VC 7.1 support. by Jeremy Hylton · 22 years ago
  65. 71adf7e Doctest now examines all docstrings by default. Previously, it would by Raymond Hettinger · 22 years ago
  66. 43d790c Exercise Jim Fulton's new doctest extension for running doctests in a by Raymond Hettinger · 22 years ago
  67. 83325e9 Fix faulty doctests. There is no results attribute. by Raymond Hettinger · 22 years ago
  68. f359062 Extend last change to cover TestSuites as well as TestCases. by Raymond Hettinger · 22 years ago
  69. bb4a47c Prevent failure on the mac, where "mbcs" is not the file system by Mark Hammond · 22 years ago
  70. cca9122 Update to reflect the current status of the configuration system. by Kurt B. Kaiser · 22 years ago
  71. 21d9987 run_unittest() to support TestCase instances as well as classes. Helps with doctests. by Raymond Hettinger · 22 years ago
  72. 19db13b Fixed test and converted to unittest format. by Raymond Hettinger · 22 years ago
  73. 158af58 Fixed test and converted to unittest format. by Raymond Hettinger · 22 years ago
  74. 42d9016 SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 22 years ago
  75. f393fc6 Add various test cases from SF patch 543867. by Walter Dörwald · 22 years ago
  76. c171172 Make the prefix 7 spaces long, so the lines are properly aligned. by Walter Dörwald · 22 years ago
  77. f425b1e stylistic nits: - wrap some long lines - shorten others - fix indentation by Fred Drake · 22 years ago
  78. 6d06815 Give dumbdbm a sync() method which Shelve can call. Should solve some by Skip Montanaro · 22 years ago
  79. 92f200b SF bug #770601: CGIHTTPServer and environment variables (bug + solution) by Raymond Hettinger · 22 years ago
  80. 7a6c733 Make close() identical to __del__() for a dumbdbm database. Make by Tim Peters · 22 years ago
  81. 4a4296e SF patch #765238: fix fnmatch.__all__ (Contributed by George Yoshida.) by Raymond Hettinger · 22 years ago
  82. ae5c37b delete unused local variable (pychecker caught) by Skip Montanaro · 22 years ago
  83. 61bfb73 SF bug #769142: CallTip trimming may loop forever. by Raymond Hettinger · 22 years ago
  84. d6f6e50 Reworked test_warnings.py: by Raymond Hettinger · 22 years ago
  85. dc9dcf1 This test failed on WindowsME because the full file path did not get by Raymond Hettinger · 22 years ago
  86. 0320464 Repaired typos in comments. by Tim Peters · 22 years ago
  87. d7472ec Fixed critical shutdown race in _Database._commit. by Tim Peters · 22 years ago
  88. 1d8d729 More comments about why not closing a dumddbm properly can be a disaster. by Tim Peters · 22 years ago
  89. 4a6302b SF 748201: time.strptime() should display format and date on error by Raymond Hettinger · 22 years ago
  90. 3898a70 _commit(): Modernization. by Tim Peters · 22 years ago
  91. 7dfd570 There's a persistent rumor on the spambayes mailing list that dumbdbm by Tim Peters · 22 years ago
  92. 541342f Patch #764470: Fix marshalling of faults. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  93. 162f081 Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  94. cc39a13 Expose the 'master' instance mentioned in the docs. by Raymond Hettinger · 22 years ago
  95. b6d2f3e Don't include slash in search string; it's OS-specific. by Jeremy Hylton · 22 years ago
  96. 8501466 Change warnings to avoid importing re module during startup. by Jeremy Hylton · 22 years ago
  97. a1e93e8 patch #766650 - whichdb not identifying dbm DBs when dbm linked with gdbm by Andrew MacIntyre · 22 years ago
  98. c4bf893 [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX by Just van Rossum · 22 years ago
  99. ef6573e __setitem__: Use integer division for computing # of blocks. by Tim Peters · 22 years ago
  100. 663d1b6 Added a new randomized test. by Tim Peters · 22 years ago