1. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  2. 05eb401 Fix indentation error in testGetServByName and rewrite loop to avoid clumsy by Skip Montanaro · 20 years ago
  3. 029dba5 Make reversed() transparent with respect to length. by Raymond Hettinger · 20 years ago
  4. 5cab2e3 Give itertools.repeat() a length method. by Raymond Hettinger · 20 years ago
  5. 3dc3484 SF bug #892492: Multiple close() for asyncore.dispatcher. by Raymond Hettinger · 20 years ago
  6. 06353f7 Let reversed() work with itself. by Raymond Hettinger · 20 years ago
  7. ee33b27 Make deque.rotate() smarter. Beef-up related tests. by Raymond Hettinger · 20 years ago
  8. 3b6d025 Patch #868499, adds -T option for code coverage. The implementation is a by Barry Warsaw · 20 years ago
  9. 5c5eb86 * Incorporate Skip's suggestions for documentation (explain the word deque by Raymond Hettinger · 20 years ago
  10. b317648 no longer support linux1 platform by Skip Montanaro · 20 years ago
  11. b23b769 no longer support sunos4 platform by Skip Montanaro · 20 years ago
  12. ac093c6 Use collection.deque() instead of a list for a FIFO queue. by Raymond Hettinger · 20 years ago
  13. c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 20 years ago
  14. b5ba8d7 Lists work better when popping from the right. by Raymond Hettinger · 20 years ago
  15. 3ba85c2 Have deques support high volume loads. by Raymond Hettinger · 20 years ago
  16. 7dcf9f8 Fix test failure message (from SF patch #885008) by Walter Dörwald · 20 years ago
  17. 0a83778 Back rev 1.3 out per Raymond's request. by Hye-Shik Chang · 20 years ago
  18. d310f13 Simple is better than complex. by Hye-Shik Chang · 20 years ago
  19. cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 20 years ago
  20. bc875f5 Allocating a new weakref object can cause existing weakref objects for by Fred Drake · 20 years ago
  21. ea2adc9 - add tests that exercise fixes for the PyWeakref_NewRef() and by Fred Drake · 21 years ago
  22. ff83c2b Fix input() builtin function to respect compiler flags. by Hye-Shik Chang · 21 years ago
  23. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 21 years ago
  24. 4e9e7a6 don't wrap lines too late by default closes SF bug #842213 by Fred Drake · 21 years ago
  25. 7663729 There was an error in the Tk error dialog fix at Rev 1.84 which caused starting by Kurt B. Kaiser · 21 years ago
  26. d6ab77d rpc.py:SocketIO - Large modules were generating large pickles when downloaded by Kurt B. Kaiser · 21 years ago
  27. af3eb87 Added a Tk error dialog to run.py inform the user if the subprocess can't by Kurt B. Kaiser · 21 years ago
  28. 734fb57 Add a Guido inspired example for groupby(). by Raymond Hettinger · 21 years ago
  29. c83dddf Let the default encodings search function lookup aliases before trying the codec import. This allows applications to install codecs which override (non-special-cased) builtin codecs. by Marc-André Lemburg · 21 years ago
  30. 5c94d33 Add some more code page aliases needed for completeness. by Marc-André Lemburg · 21 years ago
  31. b619e4b Fix a typo: s/iso_3022/iso2022/ by Hye-Shik Chang · 21 years ago
  32. a5e719e Test not the standard utf-8 codec but gb18030 which is the most complex by Hye-Shik Chang · 21 years ago
  33. 1301892 For whatever reason, these files had \r\r\n line endings on Windows, by Tim Peters · 21 years ago
  34. 8279170 Revert another local change that snuck into a whitespace normalization patch. by Tim Peters · 21 years ago
  35. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  36. 3e2a306 Add CJK codecs support as discussed on python-dev. (SF #873597) by Hye-Shik Chang · 21 years ago
  37. e33aef7 __init__.py: keep it compatible with older python (True and False == 1 and 0) by Gregory P. Smith · 21 years ago
  38. 8f799e4 __all__: Remove freenet_b64encode and freenet_b64decode. by Barry Warsaw · 21 years ago
  39. 0c41027 SF Patch #864863: Bisect C implementation (Contributed by Dmitry Vasiliev.) by Raymond Hettinger · 21 years ago
  40. 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 21 years ago
  41. d73ef06 Exercise sorted() where possible by Raymond Hettinger · 21 years ago
  42. 816ed1b SF patch #868736: Disable GC for timeit by Raymond Hettinger · 21 years ago
  43. 4f019d3 More complete code coverage, including testing the new RFC 3548 support. by Barry Warsaw · 21 years ago
  44. 4c904d1 Added more complete RFC 3548 support for Base64, Base32, and Base16 by Barry Warsaw · 21 years ago
  45. b993b06 The script now takes an optional command-line argument to specify how many by Alex Martelli · 21 years ago
  46. 6e4f7a8 [Bug #812325 ] tarfile.close() can write out more bytes to the output by Andrew M. Kuchling · 21 years ago
  47. e9802a3 - Print correct exception even if source file changed since shell was by Kurt B. Kaiser · 21 years ago
  48. 74bb7f0 SF Patch 681780: Faster commonprefix (OS independent) by Raymond Hettinger · 21 years ago
  49. 6e70acc Strengthen the test for hash effectiveness by Raymond Hettinger · 21 years ago
  50. 4a44293 Fixes to support CJKCodecs as per SF bug #852347. Actually, this by Barry Warsaw · 21 years ago
  51. 339270e Bump version number to 2.5.5 by Barry Warsaw · 21 years ago
  52. b386f6a As part of fixing bug #829532, add a test case that exercises os.makedirs by Andrew M. Kuchling · 21 years ago
  53. 6fccc8a [Bug #829532] Invoking os.makedirs() with an argument that contains a by Andrew M. Kuchling · 21 years ago
  54. 7fc4cf5 Fix unicode.rsplit()'s bug that ignores separater on the end of string when by Hye-Shik Chang · 21 years ago
  55. 9014560 Make sure the UserDict copies do not share the same underlying by Raymond Hettinger · 21 years ago
  56. 893020b Remove self from the arguments for the function add_type(). by Walter Dörwald · 21 years ago
  57. 8d2e08d Enable some unittests on FreeBSD. by Hye-Shik Chang · 21 years ago
  58. e708fbd Remove methods that are no longer called by urllib2. by Jeremy Hylton · 21 years ago
  59. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  60. df38ea9 Add methods to MockHTTPClass for modern httplib interface. by Jeremy Hylton · 21 years ago
  61. 023518a Rewrite AbstractHTTPHandler to use modern httplib interface. by Jeremy Hylton · 21 years ago
  62. eebb641 Add rsplit method for UserString, too. (Spotted by Raymond Hettinger) by Hye-Shik Chang · 21 years ago
  63. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  64. dce391c Remove __del__ methods to avoid creating uncollectable cyclic trash. by Jeremy Hylton · 21 years ago
  65. c2fcf9b Make the module docstring a raw string, so that the backslash in by Walter Dörwald · 21 years ago
  66. c1be59f SF patch 852995: add processors feature to urllib2 by Jeremy Hylton · 21 years ago
  67. 328f338 SF #736962, port test_future to unittest, add a bit more coverage, by Walter Dörwald by Neal Norwitz · 21 years ago
  68. b167b04 Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%. by Walter Dörwald · 21 years ago
  69. 73b94da Wrapper modules for _Launch and _OSA weren't added yet. Fixed. by Jack Jansen · 21 years ago
  70. 1dde95d Move list and tuple tests from test_types.py to their own scripts: by Walter Dörwald · 21 years ago
  71. d25c1c6 Implement itertools.groupby() by Raymond Hettinger · 21 years ago
  72. b8d5f24 Variation of Thomas Heller's patch (722638) for improving readability by Steve Purcell · 21 years ago
  73. da78a5d Finished update to universal header 3.4.2. by Jack Jansen · 21 years ago
  74. 5a4071a Reverting to previous version, which works. And I don't really care about by Jack Jansen · 21 years ago
  75. 9436a75 Compile the files in the same order they are passed to the compiler. by Thomas Heller · 21 years ago
  76. f477c88 SF bug #849662. Dramatically, improve comparison speed for "if shl == None". by Raymond Hettinger · 21 years ago
  77. edfb302 Fix error in exception message. by Brett Cannon · 21 years ago
  78. 9da1efb Remove extra copy of test_key_with_exception that somehow appeared by Michael W. Hudson · 21 years ago
  79. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
  80. c6c5ece Typo repair; added some comments and horizontal whitespace. by Tim Peters · 21 years ago
  81. fe3fe4a Adding an interface to the high-level Open Scripting Architecture, by Jack Jansen · 21 years ago
  82. 2e8624c Fix test_unicode_file errors on platforms without Unicode file support, by Mark Hammond · 21 years ago
  83. c8de458 Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() by Walter Dörwald · 21 years ago
  84. 7a7ede5 Patch #750542: pprint now will pretty print subclasses of list, tuple by Walter Dörwald · 21 years ago
  85. 291481b Reduce the size of Big String and Big Binary tests to 2**14 (minus one by Guido van Rossum · 21 years ago
  86. 6d45972 Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with by Mark Hammond · 21 years ago
  87. b337dd9 Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be by Mark Hammond · 21 years ago
  88. 7d0a609 An interface to the LaunchServices API. by Jack Jansen · 21 years ago
  89. 89f9865 OS/2+EMX: make the link() emulation available as os.link() by Andrew MacIntyre · 21 years ago
  90. eb477f0 EMX lacks an implementation of link(). As Mailman wants os.link() to by Andrew MacIntyre · 21 years ago
  91. 2e8a6e0 To find the curses extension as a DLL (on OS/2), we need to adjust the by Andrew MacIntyre · 21 years ago
  92. 63ee110 use same compiler switches as core for extensions by Andrew MacIntyre · 21 years ago
  93. 70ef869 SF patch #852140: keyword.py - use __contains__ and bool by Raymond Hettinger · 21 years ago
  94. 85f48e3 Convert path objects to strings in askdirectory. Fixes #852314. by Martin v. Löwis · 21 years ago
  95. 3375fc5 Apply extract functions instead of lambda. by Raymond Hettinger · 21 years ago
  96. 0ad142a Revert previous change. MAL preferred the old version. by Raymond Hettinger · 21 years ago
  97. 166958b As discussed on python-dev, added two extractor functions to the by Raymond Hettinger · 21 years ago
  98. a455170 Simplifed the code. by Raymond Hettinger · 21 years ago
  99. 0a18552 Add testcases for _winreg segfault (SF 851056). by Guido van Rossum · 21 years ago
  100. 457bf91 Fix a bug discovered by Kalle Svensson: comparing sys.maxint to by Guido van Rossum · 21 years ago