1. 5f7c4b3 Remove dead code in get_stack(). by Kurt B. Kaiser · 22 years ago
  2. 491427d Fix beep. Then remove annoying beep, not needed with breakpoint highlighting. by Kurt B. Kaiser · 22 years ago
  3. 6453c1f Cleanup: by Neal Norwitz · 22 years ago
  4. 539594f Remove unused import by Neal Norwitz · 22 years ago
  5. 5b0b00f Convert string exceptions to classes, string exceptions are deprecated by Neal Norwitz · 22 years ago
  6. 672ce57 Convert some more 1/0 to True/False by Neal Norwitz · 22 years ago
  7. f4c4f11 Add missing self for method call by Neal Norwitz · 22 years ago
  8. 3e0edbf Port Martin von Loewis checkin from Python: by Neal Norwitz · 22 years ago
  9. ce8ed1a Port Martin von Loewis checkin from python: Support sdist. by Neal Norwitz · 22 years ago
  10. 6e44cc2 M PyShell.py M rpc.py by Kurt B. Kaiser · 22 years ago
  11. a59ef7b getdoc(): by Ka-Ping Yee · 22 years ago
  12. 8188559 Correct an error introduced at Rev 1.30. The keyword arg is necessary by Kurt B. Kaiser · 22 years ago
  13. 8e30bcd Fix mode on scripts to have the read bit set (noted by Nicholas Riley) by Andrew M. Kuchling · 22 years ago
  14. ade8c8b2 Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  15. deaba57 SF #641170, reST version of Lib/test/README by Neal Norwitz · 22 years ago
  16. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  17. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  18. 31ddfb6 [Part of patch #641685] Add .dylib as an extension for shared libraries by Andrew M. Kuchling · 22 years ago
  19. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  20. e16e01f Patch #639112: fixes for None locale and tz. by Martin v. Löwis · 22 years ago
  21. e4827eb Bring UserDict in-sync with changes to dict. by Raymond Hettinger · 22 years ago
  22. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago
  23. a01fa26 The MRO conflict error message depends on dictionary hash order. by Guido van Rossum · 22 years ago
  24. 4dd0f7e Add a way to say "use any resource except A". For example, to run by Fred Drake · 22 years ago
  25. 8c8aa5d Rename want_objects to wantobjects throughout, for consistency. by Martin v. Löwis · 22 years ago
  26. 94e7bb7 Use "is" to test type objects, not "==". by Fred Drake · 22 years ago
  27. acd5cb2 Fix for bug #410541: bdist builds bogus .zips by Andrew M. Kuchling · 22 years ago
  28. 40f23e0 Part of the fix for bug #410541: add ensure_relative() function by Andrew M. Kuchling · 22 years ago
  29. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  30. ffad633 Patch #518625: Return objects in Tkinter. by Martin v. Löwis · 22 years ago
  31. d32047f A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  32. 35e48d2 SF 643115: Set._update() had a special case for dictionaries which allowed by Raymond Hettinger · 22 years ago
  33. 00445d2 Fix typo in comment. by Walter Dörwald · 22 years ago
  34. 1456fde Fixed bug by Gustavo Niemeyer · 22 years ago
  35. d5169ba Regenerate from Unicode 3.2.0 to include all First/Last ranges. by Martin v. Löwis · 22 years ago
  36. 1babdfc Reduced memory burden by iterating over the normalization test input by Tim Peters · 22 years ago
  37. 1b445d3 Fiddled things so that test_normalization is expected to be skipped if by Tim Peters · 22 years ago
  38. 65730a4 Delete bsddb from sys.modules if _bsddb cannot be imported. by Martin v. Löwis · 22 years ago
  39. d332c08 Skip test_normalization on Windows until it's at least clear why the by Tim Peters · 22 years ago
  40. b9ac505 Split long line. by Tim Peters · 22 years ago
  41. 77c06fb Whitespace normalization. by Tim Peters · 22 years ago
  42. 677bde2 Patch #626485: Support Unicode normalization. by Martin v. Löwis · 22 years ago
  43. 74a530d Update character names. by Martin v. Löwis · 22 years ago
  44. ef7fe2e Implement names for CJK unified ideographs. Add name to KeyError output. by Martin v. Löwis · 22 years ago
  45. 8579efc Add test cases for Hangul syllables. Update output. by Martin v. Löwis · 22 years ago
  46. ca2953e Remove duplicate test by Neal Norwitz · 22 years ago
  47. 529ec6a Regenerate. Fixes #618012. by Martin v. Löwis · 22 years ago
  48. b2c7aff Merge with bsddb3 2002.11.23.10.42.36 by Martin v. Löwis · 22 years ago
  49. a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 22 years ago
  50. 450cafa (This is hopefully the last large, funny checkin message for by Thomas Heller · 22 years ago
  51. 3a23c3f get_python_version was not imported. by Thomas Heller · 22 years ago
  52. 8bec483 Two bugs: by Fred Drake · 22 years ago
  53. 78e35f9 Move Windows Python away from bsddb 1.85 and toward Sleepycat's latest. by Tim Peters · 22 years ago
  54. 44f602d Comment out the warnings about mktemp(). These are too annoying, and by Guido van Rossum · 22 years ago
  55. 132e0e8 Use False instead of 0. by Fred Drake · 22 years ago
  56. 4581cfa Patch #486438: Make module argument to testmod optional. by Martin v. Löwis · 22 years ago
  57. f86e8ef Patch #550765: Add daemon_threads flag. by Martin v. Löwis · 22 years ago
  58. e0273de added new IMAP4_stream class; added proxyauth command; added login_cram_md5 method by Piers Lauder · 22 years ago
  59. 5440545 Implement dict() style constructor. by Raymond Hettinger · 22 years ago
  60. d899605 Patch #633547: Support plural forms. Do TODOs in test suite. by Martin v. Löwis · 22 years ago
  61. 21b6014 The _Event class should be more careful with releasing its lock when by Guido van Rossum · 22 years ago
  62. fec3262 Reflow comment by Andrew M. Kuchling · 22 years ago
  63. 69ceb33 Patch #642019: Recognize gcc-x.y as gcc. by Martin v. Löwis · 22 years ago
  64. cdd2157 Bug #639118 from Ollie Oldham: archiver should use zipfile before zip by Andrew M. Kuchling · 22 years ago
  65. 97701b5 _RandomNameSequence(): style guide changes, small speedup, don't by Tim Peters · 22 years ago
  66. 6ef966e _TemporaryFileWrapper: changed self.close_called to a proper bool. by Tim Peters · 22 years ago
  67. 4fc9047 Apply Nicolas Riley's Patch. by Kurt B. Kaiser · 22 years ago
  68. 201626e Fix SF #640094, on win32 getpass runs into unix_getpass by Neal Norwitz · 22 years ago
  69. 2db92a6 Add missing import by Andrew M. Kuchling · 22 years ago
  70. 7f82f79 Add missing documentation for the PEP 293 functionality to by Walter Dörwald · 22 years ago
  71. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  72. 7a3bae4 Replace bsddb3 and _db occurrences. by Martin v. Löwis · 22 years ago
  73. 1c6b1a2 Importing test suite from bsddb3 3.4.0 (with modifications). by Martin v. Löwis · 22 years ago
  74. d448f66 Add comment to Distutil files about requiring 1.5.2 compatibility, as by Andrew M. Kuchling · 22 years ago
  75. 6aa4a1f Import PyBSDDB 3.4.0. Rename historical wrapper to bsddb185. by Martin v. Löwis · 22 years ago
  76. fe4f769 Add __mod__ method to UserString. by Neil Schemenauer · 22 years ago
  77. b981df9 check for str.__mod__ by Neil Schemenauer · 22 years ago
  78. ab9e4b7 check for unicode.__mod__ by Neil Schemenauer · 22 years ago
  79. 311f419 Improve comments. Clarify docs. by Raymond Hettinger · 22 years ago
  80. 8ddc176e Improve DictMixin. by Raymond Hettinger · 22 years ago
  81. 782d940 Guard against error if .netrc is missing. by Eric S. Raymond · 22 years ago
  82. c4d047a SF Patch #638825 by Neal Norwitz · 22 years ago
  83. d1cade0 SF Patch #638825 logging module by Neal Norwitz · 22 years ago
  84. a1d004a Style guide reformats. I saw this test fail on a very heavily loaded by Tim Peters · 22 years ago
  85. 903bf90 SF patch #520382: Expand shelve.py to have a full dictionary interface by Raymond Hettinger · 22 years ago
  86. 7994716 SF patch #520382: Expand shelve.py to have a full dictionary interface by Raymond Hettinger · 22 years ago
  87. b9ba458 Checking in Greg Ward's Optik, as optparse.py. This is the most by Guido van Rossum · 22 years ago
  88. 9a81892 Fix or disable some tests that were affected by the new C3 MRO by Guido van Rossum · 22 years ago
  89. c293704 This uses only one temp file at a time, so use test_support.TESTFN as by Tim Peters · 22 years ago
  90. 3165786 From SF patch 638299 [by Vinaj]: fileConfig() now takes an optional by Guido van Rossum · 22 years ago
  91. a4864a2 Update the docstring to match the code. Will backport. by Neal Norwitz · 22 years ago
  92. f539bde Sync Tix from Mike Clarkson, a maintainer by Neal Norwitz · 22 years ago
  93. a6483d2 Remove 'created by' lines; people can use CVS for this, and the information is often out of date by Andrew M. Kuchling · 22 years ago
  94. ef67956 Fix typo in comment by Neal Norwitz · 22 years ago
  95. f6756e8 Fix docstring typo; remove 'created' line by Andrew M. Kuchling · 22 years ago
  96. 1cace1a [Bug #550364] Use sysconfig.get_python_version() by Andrew M. Kuchling · 22 years ago
  97. 0ff98b9 [Bug #550364] Add get_python_version() by Andrew M. Kuchling · 22 years ago
  98. 9a38dcf [Bug #599248] ext module generation problem by Andrew M. Kuchling · 22 years ago
  99. b2db587 Make nntplib aware of ~/.netrc credentials; now they get used if they are by Eric S. Raymond · 22 years ago
  100. 4c8be85 Add some simple tests of the persistence hooks. by Jeremy Hylton · 22 years ago