1. 43d790c Exercise Jim Fulton's new doctest extension for running doctests in a by Raymond Hettinger · 21 years ago
  2. 83325e9 Fix faulty doctests. There is no results attribute. by Raymond Hettinger · 21 years ago
  3. f359062 Extend last change to cover TestSuites as well as TestCases. by Raymond Hettinger · 21 years ago
  4. bb4a47c Prevent failure on the mac, where "mbcs" is not the file system by Mark Hammond · 21 years ago
  5. cca9122 Update to reflect the current status of the configuration system. by Kurt B. Kaiser · 21 years ago
  6. 21d9987 run_unittest() to support TestCase instances as well as classes. Helps with doctests. by Raymond Hettinger · 21 years ago
  7. 19db13b Fixed test and converted to unittest format. by Raymond Hettinger · 21 years ago
  8. 158af58 Fixed test and converted to unittest format. by Raymond Hettinger · 21 years ago
  9. 42d9016 SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 21 years ago
  10. f393fc6 Add various test cases from SF patch 543867. by Walter Dörwald · 21 years ago
  11. c171172 Make the prefix 7 spaces long, so the lines are properly aligned. by Walter Dörwald · 21 years ago
  12. f425b1e stylistic nits: - wrap some long lines - shorten others - fix indentation by Fred Drake · 21 years ago
  13. 6d06815 Give dumbdbm a sync() method which Shelve can call. Should solve some by Skip Montanaro · 21 years ago
  14. 92f200b SF bug #770601: CGIHTTPServer and environment variables (bug + solution) by Raymond Hettinger · 21 years ago
  15. 7a6c733 Make close() identical to __del__() for a dumbdbm database. Make by Tim Peters · 21 years ago
  16. 4a4296e SF patch #765238: fix fnmatch.__all__ (Contributed by George Yoshida.) by Raymond Hettinger · 21 years ago
  17. ae5c37b delete unused local variable (pychecker caught) by Skip Montanaro · 21 years ago
  18. 61bfb73 SF bug #769142: CallTip trimming may loop forever. by Raymond Hettinger · 21 years ago
  19. d6f6e50 Reworked test_warnings.py: by Raymond Hettinger · 21 years ago
  20. dc9dcf1 This test failed on WindowsME because the full file path did not get by Raymond Hettinger · 21 years ago
  21. 0320464 Repaired typos in comments. by Tim Peters · 21 years ago
  22. d7472ec Fixed critical shutdown race in _Database._commit. by Tim Peters · 21 years ago
  23. 1d8d729 More comments about why not closing a dumddbm properly can be a disaster. by Tim Peters · 21 years ago
  24. 4a6302b SF 748201: time.strptime() should display format and date on error by Raymond Hettinger · 21 years ago
  25. 3898a70 _commit(): Modernization. by Tim Peters · 21 years ago
  26. 7dfd570 There's a persistent rumor on the spambayes mailing list that dumbdbm by Tim Peters · 21 years ago
  27. 541342f Patch #764470: Fix marshalling of faults. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  28. 162f081 Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  29. cc39a13 Expose the 'master' instance mentioned in the docs. by Raymond Hettinger · 21 years ago
  30. b6d2f3e Don't include slash in search string; it's OS-specific. by Jeremy Hylton · 21 years ago
  31. 8501466 Change warnings to avoid importing re module during startup. by Jeremy Hylton · 21 years ago
  32. a1e93e8 patch #766650 - whichdb not identifying dbm DBs when dbm linked with gdbm by Andrew MacIntyre · 21 years ago
  33. c4bf893 [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX by Just van Rossum · 21 years ago
  34. ef6573e __setitem__: Use integer division for computing # of blocks. by Tim Peters · 21 years ago
  35. 663d1b6 Added a new randomized test. by Tim Peters · 21 years ago
  36. ed8bfce Fixed a bug that's been there from the beginning but wasn't noticed by Just van Rossum · 21 years ago
  37. 87316ec don't optimize empty strings by Just van Rossum · 21 years ago
  38. aefae55 Fix wrong header name. The framework looks for auth_header. by Jeremy Hylton · 21 years ago
  39. 71d74e8 Extend the pwd & grp emulations to support accessing the pwd/grp by Andrew MacIntyre · 21 years ago
  40. 931237e SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds) by Raymond Hettinger · 21 years ago
  41. ad30fa0 fix to work on python <= 2.1 by Gregory P. Smith · 21 years ago
  42. df35bee bugfix: proper import bsddb exists below by Gregory P. Smith · 21 years ago
  43. 455d46f bsddb 4.1.6: by Gregory P. Smith · 21 years ago
  44. bea57c6 SF Bug 767794 "Break or continue outside loop causes crash" by Kurt B. Kaiser · 21 years ago
  45. 121d34a Fix SF bug 764095: Don't use network in test_httplib. by Jeremy Hylton · 21 years ago
  46. b5aa407 Use Boolean values for the capturestderr flag. by Fred Drake · 21 years ago
  47. d7ce86d Patch from Zooko to remove an experimental feature. by Jeremy Hylton · 21 years ago
  48. e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
  49. be56aae #765903: by Just van Rossum · 21 years ago
  50. bbaa083 If a --python option is used to specify the Python to use in the #! by Jack Jansen · 21 years ago
  51. cde2200 Fixes bug of timezone value being left as -1 when ``time.tzname[0] == by Brett Cannon · 21 years ago
  52. 7490250 Addendum to #764548: restore 2.1 compatibility. by Just van Rossum · 21 years ago
  53. 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
  54. 6802c6e fixed typo in comment by Just van Rossum · 21 years ago
  55. 348c261 On those systems lacking the AFMT_S16_NE symbol, the test was failing by Andrew MacIntyre · 21 years ago
  56. b7f6810 SF #764121, docstring for spawnlp incorrect by Neal Norwitz · 21 years ago
  57. 3c0f2c9 Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel by Neal Norwitz · 21 years ago
  58. bcc58e8 - added (c)StringIO tests; cStringIO usage failed in the previous by Just van Rossum · 21 years ago
  59. 94af32e - replaced a couple of asserts with proper exceptions by Just van Rossum · 21 years ago
  60. 59aba12 Make the classes exposed by threading.py new-style classes. This is by Tim Peters · 21 years ago
  61. 0939fac Resolved minor XXX question in the obvious way. by Tim Peters · 21 years ago
  62. e7dfe21 Fix SF bug #763023, difflib.py: ratio() zero division not caught by Neal Norwitz · 21 years ago
  63. 37ca8c1 connector(): You can't use an empty string as an argument to connect() by Tim Peters · 21 years ago
  64. 1787a0b Fix SF bug #763770, test_socket_ssl crash by Neal Norwitz · 21 years ago
  65. cc0a664 Test Brett's addition of __all__ to Queue. by Raymond Hettinger · 21 years ago
  66. b42bb5a Add __all__ . by Brett Cannon · 21 years ago
  67. 168e73d Fix SF #763362, test_posixpath failed by Neal Norwitz · 21 years ago
  68. 3106817 Fix typo in error message by Neal Norwitz · 21 years ago
  69. 8bcbe6a Don't require that a RuntimeError is raised when playing a second by Walter Dörwald · 21 years ago
  70. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  71. a9002f8 Fix SF #754870, SSL crash interpreter when remote side closes during connect by Neal Norwitz · 21 years ago
  72. 79b0ae1 restore 2.2 compatibility: by Just van Rossum · 21 years ago
  73. 762d2cc - added --semi-standalone option that builds apps that depend on an by Just van Rossum · 21 years ago
  74. 0242070 More tests by Raymond Hettinger · 21 years ago
  75. b676952 Fix sf bug 666219: assertion error in httplib. by Jeremy Hylton · 21 years ago
  76. d1b108b Whitespace normalization. by Tim Peters · 21 years ago
  77. 89392c0 Remove stub settrace() and setprofile() calls. by Jeremy Hylton · 21 years ago
  78. e3a565e Fix grammar in comment. by Jeremy Hylton · 21 years ago
  79. 97b2e84 Whitespace normalization. by Jeremy Hylton · 21 years ago
  80. bfccb35 Add settrace() and setprofile() functions to the threading library. by Jeremy Hylton · 21 years ago
  81. 685e697 Provide dummy (do-nothing) settrace() and setprofile() functions until by Tim Peters · 21 years ago
  82. b4e9986 Removed invalid test. Analysis by Bob Halley: by Raymond Hettinger · 21 years ago
  83. 2b6220d SF bug #762455: Python segfaults when sys.stdout is changed in getattr by Raymond Hettinger · 21 years ago
  84. 478c105 Whitespace normalization. by Tim Peters · 21 years ago
  85. db3756d Some nifty doctest extensions from Jim Fulton, currently used in Zope3. by Tim Peters · 21 years ago
  86. e2f1837 SF bug #430160: CGIHTTPServer.py POST bug using IE by Raymond Hettinger · 21 years ago
  87. bc05fc5 Add missing self. before curNode. This may need to be committed by Neal Norwitz · 21 years ago
  88. 11a35f5 SF patch #760257: add socket.timeout exception (Contributed by Bob Halley) by Raymond Hettinger · 21 years ago
  89. 10f3018 Fix arguments for instantiating InterpolationSyntaxError by Neal Norwitz · 21 years ago
  90. b207170 Comment out cap, it was unused. Should all the commented out code be removed? by Neal Norwitz · 21 years ago
  91. 3f401f0 whitespace normalization by Neal Norwitz · 21 years ago
  92. c556722 remove unused import math by Neal Norwitz · 21 years ago
  93. 9b924c6 remove extra parameter from _java_getprop, remove duplicate imports by Neal Norwitz · 21 years ago
  94. 77290f2 use == like all the other conditionals by Neal Norwitz · 21 years ago
  95. 732911f fix problems found by pychecker by Neal Norwitz · 21 years ago
  96. 275abbd Missed a spot where the new optional optionflags argument needed to get by Tim Peters · 21 years ago
  97. c5991b0 Use http://www.python.org/packman as the base URL. Also upped the version by Jack Jansen · 21 years ago
  98. 2dd1ed6 SF 662923: iterator for dbm keys by Raymond Hettinger · 21 years ago
  99. 3567a87 Add take() to examples. Tighten the islice() example by Raymond Hettinger · 21 years ago
  100. c0fac96 SF patch #756996: Bare except in ZipFile.testzip() by Raymond Hettinger · 21 years ago