1. b8e1717 [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addresses by Andrew M. Kuchling · 20 years ago
  2. e6f8a89 Debug output is now printed to sys.stderr . by Brett Cannon · 20 years ago
  3. cd77dd6 Fix minor error in example. by Brett Cannon · 20 years ago
  4. f50299c posixpath.realpath() now detects symlink loops and returns the path just before by Brett Cannon · 20 years ago
  5. 711e7d9 Add PyArg_VaParseTupleAndKeywords(). Document this function and by Brett Cannon · 20 years ago
  6. 9a2a1cb [Patch #981794] Add support for Firefox/Firebird by Andrew M. Kuchling · 20 years ago
  7. 864bba1 [Patch 988444] by Andrew M. Kuchling · 20 years ago
  8. f027ca8 [Patch #965175] Incorporate a suggestion for a better error message by Andrew M. Kuchling · 20 years ago
  9. 3e377de Change some declarations from ``char *`` to ``const char *``. Also added by Brett Cannon · 20 years ago
  10. 27d3dda [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compatibility with various broken SSL implementations out there. by Andrew M. Kuchling · 20 years ago
  11. 79d7e92 Add item by Andrew M. Kuchling · 20 years ago
  12. 9c3efe3 [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes in Python 2.3. by Andrew M. Kuchling · 20 years ago
  13. 91cc5cd Clarify docs for inspect.getargspec() that the fourth value is None when there by Brett Cannon · 20 years ago
  14. bdc3627 Make ntpath compress multiple slashes between drive letter and the rest of the by Brett Cannon · 20 years ago
  15. 85064ff [Patch #988602] Move the urllib2 tests into the test framework by Andrew M. Kuchling · 20 years ago
  16. 3ffff2a Add comments at end of every #endif and fix ones already there when for closing by Brett Cannon · 20 years ago
  17. e675118 Add note about closing of bug #679953 and add Jimmy Burgett for helping out to by Brett Cannon · 20 years ago
  18. ff450f7 Make struct formats for specifying file size to be unsigned instead of signed by Brett Cannon · 20 years ago
  19. 64ed298 Add an item by Andrew M. Kuchling · 20 years ago
  20. 3a2418a [Patch #969900] Various corrections and updates to cookielib docs by Andrew M. Kuchling · 20 years ago
  21. ae40c2f [Patch #969907] Add traceback to warning output by Andrew M. Kuchling · 20 years ago
  22. 300ce19 [Patch #972310] Apply correction to docs by Andrew M. Kuchling · 20 years ago
  23. 0fff6c8 In poll(), check connections for exceptional conditions by Andrew M. Kuchling · 20 years ago
  24. 88fcca6 Added note about new codecs module APIs. by Marc-André Lemburg · 20 years ago
  25. 21f9fce Fix typo. by Raymond Hettinger · 20 years ago
  26. 099bd52 [Bug 949832] Fix example; edit sentence by Andrew M. Kuchling · 20 years ago
  27. dfa74b9 Return value from .close(); move .set_file up by Andrew M. Kuchling · 20 years ago
  28. 5543021 [Bug #835415] AIX can return modes that are >65536, which causes an OverflowError. Fix from Albert Chin by Andrew M. Kuchling · 20 years ago
  29. f9ea7c0 [Patch #988504] Fix HTTP error handling via a patch from John J. Lee by Andrew M. Kuchling · 20 years ago
  30. 42851ab [Patch #982665 ] add SO_EXCLUSIVEADDRUSE constant by Andrew M. Kuchling · 20 years ago
  31. 5fcefdb [Patch #987052 from Thomas Guettler] by Andrew M. Kuchling · 20 years ago
  32. bf44069 Improve Context construction and representation: by Raymond Hettinger · 20 years ago
  33. d9dfe02 Remove a few elderly sentences by Andrew M. Kuchling · 20 years ago
  34. ff8113f Replace example with simpler alternative using PyGILState_{Ensure,Require). Can someone please confirm this change is OK? by Andrew M. Kuchling · 20 years ago
  35. 371d98a [Bug #987835] Add documentation from PEP 311. (Untested TeX code.) by Andrew M. Kuchling · 20 years ago
  36. 3f41974 Add generic codecs.encode() and .decode() APIs that don't impose by Marc-André Lemburg · 20 years ago
  37. 126b44c Fix a copy&paste typo. by Marc-André Lemburg · 20 years ago
  38. 0d278b8 SF bug #987486: fix typo. by Raymond Hettinger · 20 years ago
  39. 682be22 SF bug 988387: markup nits. by Raymond Hettinger · 20 years ago
  40. 64a8470 Restructure testing of .pth files. Move previous functions into a class and by Brett Cannon · 20 years ago
  41. f6067ec Add an #ifdef __APPLE__ around typedef of foreachfunc to match Apple's by Brett Cannon · 20 years ago
  42. 12f8c4d Change argument list for addsitedir() to not require a second argument and thus by Brett Cannon · 20 years ago
  43. 37b0c1d Fix memory leak and bump the version per Greg by Neal Norwitz · 20 years ago
  44. b4a5581 Cleanup support for older pythons (perhaps it should be removed?) by Neal Norwitz · 20 years ago
  45. 5da4c83 reminder for amk by Anthony Baxter · 20 years ago
  46. 5833587 Add some tests for corner cases. by Raymond Hettinger · 20 years ago
  47. d87ac8f * Update the test suite to reflect that ConversionSyntax was no longer by Raymond Hettinger · 20 years ago
  48. 5aa478b Module and tests: by Raymond Hettinger · 20 years ago
  49. 563e449 post-release fun by Anthony Baxter · 20 years ago
  50. 7732ccb post-release fun by Anthony Baxter · 20 years ago
  51. 97c9208 Incorporate Facundo's suggestions. by Raymond Hettinger · 20 years ago
  52. 9499658 Add a link to the decimal module docs. by Raymond Hettinger · 20 years ago
  53. eae05de * fix the print test * add more __init__ tests by Raymond Hettinger · 20 years ago
  54. a435c53 * balance the left/right search for getitem. by Raymond Hettinger · 20 years ago
  55. 2b2795a show how easy it is to manipulate individual columns - from a request on c.l.py by Skip Montanaro · 20 years ago
  56. 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 20 years ago
  57. d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 20 years ago
  58. 302fa6d Add another bunch of test cases for calendars with Sunday as the by Walter Dörwald · 20 years ago
  59. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  60. b43dbcb This commit was manufactured by cvs2svn to create tag 'r24a1'. by cvs2svn · 20 years ago
  61. 3970c11 Add exception handling for BaseRotatingFileHandler (SF #979252) by Vinay Sajip · 20 years ago
  62. 4bbab2b FileHandler now stores the basename as an absolute path (fix for SF #982049) by Vinay Sajip · 20 years ago
  63. 081483c Fix markup and nits. by Raymond Hettinger · 20 years ago
  64. 536f76b Fix markup, typos, and nits. by Raymond Hettinger · 20 years ago
  65. dfef882 dont think it's still being used, but just in case by Anthony Baxter · 20 years ago
  66. 74a72b9 Bump build number to 54 for 2.4.0a1 by Martin v. Löwis · 20 years ago
  67. 275ce74 2.4a1 by Anthony Baxter · 20 years ago
  68. 3210b36 release dates by Anthony Baxter · 20 years ago
  69. bd377a3 license updates for 2.4 (cleared with tim, on behalf of the psf) by Anthony Baxter · 20 years ago
  70. 27f8836 Whitespace normalization. by Tim Peters · 20 years ago
  71. 0e43db5 bump the version number for 2.4a1 by Fred Drake · 20 years ago
  72. 63a0191 Deal with macros that have to be replaced with simple text; only a by Fred Drake · 20 years ago
  73. 1c0423a Exercise xrange a bit by Neal Norwitz · 20 years ago
  74. d7be118 Exercise some error conditions by Neal Norwitz · 20 years ago
  75. 739a8f8 Fix a couple of signed/unsigned comparison warnings by Neal Norwitz · 20 years ago
  76. 4ded4b5 Pass the flags along, rather than ignoring them. Backport candidate by Neal Norwitz · 20 years ago
  77. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  78. bdcb941 SF bug #978308, Spurious errors taking bool of dead pro by Neal Norwitz · 20 years ago
  79. bd7f76d Tim gets his default traps. by Raymond Hettinger · 20 years ago
  80. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
  81. b7e898a "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD by Tim Peters · 20 years ago
  82. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  83. e3c330b Replaced some tabs with spaces in verbatim section. by Vinay Sajip · 20 years ago
  84. ea271f2 [Bug #982806] The default argument for opening GDBM files is bogus. Patch #984672 by James Lamanna by Andrew M. Kuchling · 20 years ago
  85. 1263bd8 [Bug #925107] Make .readline() consider self.stop. This makes read() and readline() very similar, so they're refactored into _read. Patch by Johannes Gijsbers. by Andrew M. Kuchling · 20 years ago
  86. 5a8b459 OS/2 EMX needs addrinfo.h for code included from getaddrinfo.c by Andrew MacIntyre · 20 years ago
  87. 378d3c0 bring OS/2 EMX port build environment up to date by Andrew MacIntyre · 20 years ago
  88. ee5e4cd [Bug #984017] Incorrect prototype, fixed by Timothy Stranex by Andrew M. Kuchling · 20 years ago
  89. bcefe69 Add logging changes by Andrew M. Kuchling · 20 years ago
  90. 6fe93cd For readable() objects, the previous value of 'flags' was ignored. by Andrew M. Kuchling · 20 years ago
  91. ad6ce46 Remove the annoing and useless messagebox asking about overwriting files. by Thomas Heller · 20 years ago
  92. b8b20e2 Made the explanation more accurate; trimmed trailing whitespace; fixed a typo. by Tim Peters · 20 years ago
  93. 7497966 Typo repair. by Tim Peters · 20 years ago
  94. d916142 whitespace normalization by Skip Montanaro · 20 years ago
  95. a146fea Fix SF#983164. by Thomas Heller · 20 years ago
  96. 5124b4a Add msg for bug #981530 (shutil.rmtree). Somehow that got missed in by Guido van Rossum · 20 years ago
  97. 7ff7d2c testGetServBy(): Use services that should be available both on *nix and by Barry Warsaw · 20 years ago
  98. 513ffe8 * Fix missing return after error message is set. by Raymond Hettinger · 20 years ago
  99. 2f55eb4 Demonstrate how to round final result. by Raymond Hettinger · 20 years ago
  100. 0aeac10 * Add __eq__ and __ne__ so that things like list.index() work properly by Raymond Hettinger · 20 years ago