1. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  2. df38ea9 Add methods to MockHTTPClass for modern httplib interface. by Jeremy Hylton · 21 years ago
  3. 023518a Rewrite AbstractHTTPHandler to use modern httplib interface. by Jeremy Hylton · 21 years ago
  4. a7b673f Fix erroneus argument parsing of socket.htons() on 64bit big endian machines. by Hye-Shik Chang · 21 years ago
  5. c6f066f Update documentations for str.rsplit() with Alex Martelli's rewrite. by Hye-Shik Chang · 21 years ago
  6. 4612bc5 Make example more readable by Andrew M. Kuchling · 21 years ago
  7. 81ad32e Speedup set.update by using the override mode for PyDict_Merge(). by Raymond Hettinger · 21 years ago
  8. eebb641 Add rsplit method for UserString, too. (Spotted by Raymond Hettinger) by Hye-Shik Chang · 21 years ago
  9. c0d49d8 Fix typo and improve wording a bit. by Raymond Hettinger · 21 years ago
  10. 060ebed Add an entry for addition of {str,unicode}.rsplit. by Hye-Shik Chang · 21 years ago
  11. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  12. dce391c Remove __del__ methods to avoid creating uncollectable cyclic trash. by Jeremy Hylton · 21 years ago
  13. 6485a87 missing word (should backport - is release23-maint still locked?) by Skip Montanaro · 21 years ago
  14. fb4e33a Improve algorithm for set.difference when the input is not a set. by Raymond Hettinger · 21 years ago
  15. c2fcf9b Make the module docstring a raw string, so that the backslash in by Walter Dörwald · 21 years ago
  16. bd311d8 Remove a "temporary" piece of code that was probably unneeded since by Guido van Rossum · 21 years ago
  17. 1ecbd67 SF #859811, typo in docs by Neal Norwitz · 21 years ago
  18. 360cd41 SF #859810, typo in doc by Neal Norwitz · 21 years ago
  19. 37c5f2a Add news item about processor support in urllib2. by Jeremy Hylton · 21 years ago
  20. c1be59f SF patch 852995: add processors feature to urllib2 by Jeremy Hylton · 21 years ago
  21. 328f338 SF #736962, port test_future to unittest, add a bit more coverage, by Walter Dörwald by Neal Norwitz · 21 years ago
  22. 378f7b5 Add a versionadded tag for traceback.format_exc() by Neal Norwitz · 21 years ago
  23. 9342fb4 Make private/local functions static by Neal Norwitz · 21 years ago
  24. 5a92175 After hearing from someone who gave up on timeout sockets due to a by Guido van Rossum · 21 years ago
  25. 2cbdc2a Cleaning up recursive pieces left in the reorganization. by Gustavo Niemeyer · 21 years ago
  26. 5469324 Note that \var{ppos} values are not consecutive and should not be altered. by Raymond Hettinger · 21 years ago
  27. 438e02d * Refactor set.__contains__() by Raymond Hettinger · 21 years ago
  28. 0deab62 Refactor set.discard() and set.remove(). by Raymond Hettinger · 21 years ago
  29. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
  30. dc5ae11 Use dictionary specific looping idiom where possible. by Raymond Hettinger · 21 years ago
  31. 0c66967 Simplify previous checkin -- a new function was not needed. by Raymond Hettinger · 21 years ago
  32. d3ae672 Use PyDict_Contains() instead of PySequence_Contains(). by Raymond Hettinger · 21 years ago
  33. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  34. feb78c9 Expand the groupby() example to: by Raymond Hettinger · 21 years ago
  35. 1f84ed0 fix typo and join two paragraphs by Fred Drake · 21 years ago
  36. b167b04 Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%. by Walter Dörwald · 21 years ago
  37. 35415da Fix broken link (closes bug #852236). Thanks to Fedor Baart for bug file and by Brett Cannon · 21 years ago
  38. bbd290a Revert previous change which didn't make sense the next day :-) by Raymond Hettinger · 21 years ago
  39. 0b565a6 - Renamed OSA.ComponentInstance to OSA.OSAComponentInstance. It is not by Jack Jansen · 21 years ago
  40. 19cb193 Fix memory error treatment correctly. Going to dsu_fail causes by Hye-Shik Chang · 21 years ago
  41. e807da8 Update to use python ints and int/long unification. by Raymond Hettinger · 21 years ago
  42. 73b94da Wrapper modules for _Launch and _OSA weren't added yet. Fixed. by Jack Jansen · 21 years ago
  43. 2e20a63 Make this module Python 2.3 compatible, and add a setup script that allows by Jack Jansen · 21 years ago
  44. 2af4ce8 Made this module compatible with Python2.3, and added a temporary setup by Jack Jansen · 21 years ago
  45. 1dde95d Move list and tuple tests from test_types.py to their own scripts: by Walter Dörwald · 21 years ago
  46. 6b70f8b Sigh. dsp files must be marked as binary files for cvs, otherwise by Thomas Heller · 21 years ago
  47. c8607b7 Revamped framework search path handling for MacOSX. This should allow by Jack Jansen · 21 years ago
  48. 48e02e4 forward port of 1.136.6.2: by Jack Jansen · 21 years ago
  49. 001734c fixed long standing typo by Just van Rossum · 21 years ago
  50. ff294fe SF patch #855195: fix typos (Contributed by George Yoshida.) by Raymond Hettinger · 21 years ago
  51. e180307 Fix missing paren. by Raymond Hettinger · 21 years ago
  52. 2955305 Fix double hyphen markup. by Raymond Hettinger · 21 years ago
  53. 2619c9e SF patch #838938: Typos in the docs (Extending/Embedding + Python/C API) by Raymond Hettinger · 21 years ago
  54. e3d5f98 Put str() in alphabetical order. by Raymond Hettinger · 21 years ago
  55. a4ce2f5 SF bug #855317: unittest: 5.3.9 Getting Extended Error Information by Raymond Hettinger · 21 years ago
  56. ad80955 Add groupby() by Andrew M. Kuchling · 21 years ago
  57. db7dcff Edit description a bit by Andrew M. Kuchling · 21 years ago
  58. b7a10d1 Incorporate suggestions from Aahz. by Raymond Hettinger · 21 years ago
  59. d25c1c6 Implement itertools.groupby() by Raymond Hettinger · 21 years ago
  60. b8d5f24 Variation of Thomas Heller's patch (722638) for improving readability by Steve Purcell · 21 years ago
  61. ff6dd0b SF bug #844123: "up" instead of "down" in turtle module documentation by Raymond Hettinger · 21 years ago
  62. 67ff6d9 Finished update to UH 3.4.2. by Jack Jansen · 21 years ago
  63. da78a5d Finished update to universal header 3.4.2. by Jack Jansen · 21 years ago
  64. 5a4071a Reverting to previous version, which works. And I don't really care about by Jack Jansen · 21 years ago
  65. c7501d5 distutils compilers now compile source files in the same order as they by Thomas Heller · 21 years ago
  66. 9436a75 Compile the files in the same order they are passed to the compiler. by Thomas Heller · 21 years ago
  67. f96dd83 - fix markup in the bool() description by Fred Drake · 21 years ago
  68. 713ade6 Add news about removal of the PendingDeprecationWarning from apply(). by Fred Drake · 21 years ago
  69. d75ede3 Remove the PendingDeprecationWarning from apply(). apply() will by Fred Drake · 21 years ago
  70. f62444a Fix links and typos. by Raymond Hettinger · 21 years ago
  71. ec3402f Fix typo by Raymond Hettinger · 21 years ago
  72. bd3a240 Fix typos. by Raymond Hettinger · 21 years ago
  73. 7425c38 The Windows build number for 2.3.3c1 is 50. by Thomas Heller · 21 years ago
  74. f477c88 SF bug #849662. Dramatically, improve comparison speed for "if shl == None". by Raymond Hettinger · 21 years ago
  75. edfb302 Fix error in exception message. by Brett Cannon · 21 years ago
  76. 9da1efb Remove extra copy of test_key_with_exception that somehow appeared by Michael W. Hudson · 21 years ago
  77. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
  78. c6c5ece Typo repair; added some comments and horizontal whitespace. by Tim Peters · 21 years ago
  79. da6081f Ported to Universal Headers 3.4.2. Qd and Qt remain to be done. by Jack Jansen · 21 years ago
  80. fe3fe4a Adding an interface to the high-level Open Scripting Architecture, by Jack Jansen · 21 years ago
  81. 8850c87 Fix link by Raymond Hettinger · 21 years ago
  82. 8772d4e Add a standard library tour by Raymond Hettinger · 21 years ago
  83. 2e8624c Fix test_unicode_file errors on platforms without Unicode file support, by Mark Hammond · 21 years ago
  84. 07f1dfa Blacklisting LSInit and LSTerm, which are deprecated. Partial fix for 853558. by Jack Jansen · 21 years ago
  85. c8de458 Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() by Walter Dörwald · 21 years ago
  86. 7a7ede5 Patch #750542: pprint now will pretty print subclasses of list, tuple by Walter Dörwald · 21 years ago
  87. 291481b Reduce the size of Big String and Big Binary tests to 2**14 (minus one by Guido van Rossum · 21 years ago
  88. 7bafa9f Fix typo. (From SF bug #853064) by Walter Dörwald · 21 years ago
  89. 6d45972 Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with by Mark Hammond · 21 years ago
  90. b337dd9 Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be by Mark Hammond · 21 years ago
  91. 817c929 Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames by Mark Hammond · 21 years ago
  92. 7d0a609 An interface to the LaunchServices API. by Jack Jansen · 21 years ago
  93. 148eb6a doc nit by Skip Montanaro · 21 years ago
  94. 89f9865 OS/2+EMX: make the link() emulation available as os.link() by Andrew MacIntyre · 21 years ago
  95. eb477f0 EMX lacks an implementation of link(). As Mailman wants os.link() to by Andrew MacIntyre · 21 years ago
  96. 2e8a6e0 To find the curses extension as a DLL (on OS/2), we need to adjust the by Andrew MacIntyre · 21 years ago
  97. c2138af - add notes about os.link() emulation; - various minor cleanups and updates. by Andrew MacIntyre · 21 years ago
  98. 51578ae - add build support for curses extension to be a normal DLL as well as by Andrew MacIntyre · 21 years ago
  99. 63ee110 use same compiler switches as core for extensions by Andrew MacIntyre · 21 years ago
  100. 70ef869 SF patch #852140: keyword.py - use __contains__ and bool by Raymond Hettinger · 21 years ago