1. 90134c9 Have MimeWriter raise a DeprecationWarning as per PEP 4 and its documentation. by Brett Cannon · 18 years ago
  2. b4eec28 Correct the name of a field in the WIN32_FIND_DATAA and WIN32_FIND_DATAW structures. by Thomas Heller · 18 years ago
  3. 601aa41 Fix compiler warnings. by Thomas Heller · 18 years ago
  4. 2fca81c Fix indentation (whitespace only). by Neal Norwitz · 18 years ago
  5. adf694b Fix typo in doc by Neal Norwitz · 18 years ago
  6. d4e42dc Fix rst markup. by Georg Brandl · 18 years ago
  7. e9607e2 Revert 55634. by Martin v. Löwis · 18 years ago
  8. a652f69 Test pre-commit hook for a link to a .py file. by Martin v. Löwis · 18 years ago
  9. 1749a13 Explain when groupby() issues a new group. by Raymond Hettinger · 18 years ago
  10. a0fcb93 Added errors argument to TarFile class that allows the user to by Lars Gustäbel · 18 years ago
  11. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 18 years ago
  12. 81a191b Applied patch 1669481, slightly modified: Support close_fds on Win32 by Peter Astrand · 18 years ago
  13. 5f9b6c9 Fix typo. by Walter Dörwald · 18 years ago
  14. 629ec26 Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included. Fixes warnings in PC builds. by Kristján Valur Jónsson · 18 years ago
  15. ba52643 Remove the rgbimgmodule from PCBuild8 by Kristján Valur Jónsson · 18 years ago
  16. 6cef076 Remove direct call's to file's constructor and replace them with calls to by Brett Cannon · 18 years ago
  17. cf99b65 Updated documentation for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
  18. 754a5fb Updated docstring for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
  19. 38917f5 Get test passing again by commenting out the reference to the test class. by Neal Norwitz · 18 years ago
  20. d9880d0 Commenting out the tests until find out who can test them in by Facundo Batista · 18 years ago
  21. e312416 Fixing stupid error, and introducing a sleep, to see if the by Facundo Batista · 18 years ago
  22. b4dfafa Trying to make the tests work in Windows and Solaris, everywhere else just works by Facundo Batista · 18 years ago
  23. 62c744e Let's see if reading exactly what is written allow this live by Facundo Batista · 18 years ago
  24. 965fa24 Removed the .recv() in the test, is not necessary, and was by Facundo Batista · 18 years ago
  25. 711a54e Added an optional timeout parameter to urllib.ftpwrapper, with tests by Facundo Batista · 18 years ago
  26. dd96ca3 Fix parameter passing. by Georg Brandl · 18 years ago
  27. c90bc75 shlex.split() now has an optional "posix" parameter. by Georg Brandl · 18 years ago
  28. df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 18 years ago
  29. c792629 Whitespace cleanup by Neal Norwitz · 18 years ago
  30. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
  31. 5f2ba9f Remove definition of PY_UNICODE_TYPE from pyconfig.h, allowing the by Mark Hammond · 18 years ago
  32. a69c02e Remove the "panel" module doc file which has been ignored since 1994. by Georg Brandl · 18 years ago
  33. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 18 years ago
  34. e2e447b Stop using METH_OLDARGS by Neal Norwitz · 18 years ago
  35. 6f145fc Document new params to HTTPSConnection by Neal Norwitz · 18 years ago
  36. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 18 years ago
  37. 70f996b Added timeout support to HTTPSConnection, through the by Facundo Batista · 18 years ago
  38. 767debb Allow all alphanumeric and underscores in type and field names. by Raymond Hettinger · 18 years ago
  39. 0d6a8cc Replace assertion with straight error-checking. by Raymond Hettinger · 18 years ago
  40. 5faa75f fix against r55474 [Remove the macfs module] by George Yoshida · 18 years ago
  41. 6f73816 Add Alexandre Vassalotti. by Martin v. Löwis · 18 years ago
  42. 0f852e2 Note removed modules by Andrew M. Kuchling · 18 years ago
  43. 41bf2fa Cause posixfile to raise a DeprecationWarning. Documented as deprecated since by Brett Cannon · 18 years ago
  44. 49da0ea Move imgfile import to the global namespace to trigger an import error ASAP to by Brett Cannon · 18 years ago
  45. 5e26351 Remove the macfs module. This led to the deprecation of macostools.touched(); by Brett Cannon · 18 years ago
  46. 7e93587 Try to remove rgbimg from Windows builds. by Brett Cannon · 18 years ago
  47. f8519c4 Update directories/files at the top-level. by Neal Norwitz · 18 years ago
  48. 90340a1 rotor is long gone. by Neal Norwitz · 18 years ago
  49. c568cc1 Fix typo in example (should be backported, but my maintenance branch is woefully out of date) by Nick Coghlan · 18 years ago
  50. dc48b74 Remove the rgbimg module. It has been deprecated since Python 2.5. by Brett Cannon · 18 years ago
  51. 8d76cca Fix docstring for add_package in site.py. by Georg Brandl · 18 years ago
  52. d410b32 Give some clue as to what happened if the test fails. by Neal Norwitz · 18 years ago
  53. 4868ef8 Whoops, need to pay attention to those test failures. by Neal Norwitz · 18 years ago
  54. 59f58aa Clear data so random memory does not get freed. Will backport. by Neal Norwitz · 18 years ago
  55. f3241a3 Fix beginner mistake -- don't mix spaces and tabs. by Raymond Hettinger · 18 years ago
  56. 5a41daf Improvements to NamedTuple's implementation, tests, and documentation by Raymond Hettinger · 18 years ago
  57. 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 18 years ago
  58. 6eb7bed Verify neither dumps or loads overflow the stack and segfault. by Neal Norwitz · 18 years ago
  59. 88d96ad fix argument name in documentation; match the implementation by Fred Drake · 18 years ago
  60. f6b0e4d Last try for tweaking the max stack depth. 5000 was the original value, by Neal Norwitz · 18 years ago
  61. 4f82bc3 Set the depth to something very small to try to determine if the by Neal Norwitz · 18 years ago
  62. 117ef08 Reduce the max stack depth to see if this fixes the segfaults on by Neal Norwitz · 18 years ago
  63. 5cd0fca Complete deprecation of BaseException.message. Some subclasses were directly by Brett Cannon · 18 years ago
  64. 72ef8da calendar.py gets no benefit from xrange() instead of range() by Raymond Hettinger · 18 years ago
  65. d75f043 Remove the gopherlib module. It has been raising a DeprecationWarning since by Brett Cannon · 18 years ago
  66. b1a9b37 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 18 years ago
  67. f1135f3 Bug #1719995: don't use deprecated method in sets example. by Georg Brandl · 18 years ago
  68. fa15511 Change the maintainer of the BeOS port. by Brett Cannon · 18 years ago
  69. e0e70a4 Mention removal of some directories for obsolete platforms by Neal Norwitz · 18 years ago
  70. d501d1f Port rev 55353 from Guido: by Neal Norwitz · 18 years ago
  71. a09a96a HTML-escape the plain traceback in cgitb's HTML output, to prevent by Georg Brandl · 18 years ago
  72. 8be9ab8 Small speedup. by Raymond Hettinger · 18 years ago
  73. cd498be Remove support for freebsd[23] which haven't been released since 2000 by Neal Norwitz · 18 years ago
  74. 25e4461 Remove references to stdwin which was removed long ago. by Neal Norwitz · 18 years ago
  75. 7072559 Remove Amoeba doc which was removed in version 1.0! according to Misc/HISTORY. by Neal Norwitz · 18 years ago
  76. 0c1f6fc Add bz2 to content encodings. by Georg Brandl · 18 years ago
  77. 2dd7d17 Bug #1046945: document SWIG options of distutils. by Georg Brandl · 18 years ago
  78. a74b67e Better tests for posixpath.commonprefix by Raymond Hettinger · 18 years ago
  79. e3e62b3 Update DDJ link. by Georg Brandl · 18 years ago
  80. c5207c8 Patch #1714700: clarify os.linesep vs. tfiles opened in text mode. (backport) by Georg Brandl · 18 years ago
  81. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 18 years ago
  82. 6bf8fa6 Deprecate os.popen* and popen2 module in favor of the subprocess module. (forgot the doc) by Neal Norwitz · 18 years ago
  83. 42dd86b Deprecate os.popen* and popen2 module in favor of the subprocess module. by Neal Norwitz · 18 years ago
  84. 82be218 Remove trailing whitespace in docstring by Neal Norwitz · 18 years ago
  85. aa87fb6 Fix typo in docstring (the module is popen2, not 3). by Neal Norwitz · 18 years ago
  86. d984103 Don't ever report a failure when the sum of the reference count differences by Neal Norwitz · 18 years ago
  87. 360496d Fix a bug in test_c_api() that caused a negative refcount. by Guido van Rossum · 18 years ago
  88. 3ebc45d Backport checkin: by Walter Dörwald · 18 years ago
  89. 0999a11 Add markup for True/False. Will backport by Neal Norwitz · 18 years ago
  90. fa9be8c Fix a bug in test.test_support.open_urlresource(). by Collin Winter · 18 years ago
  91. abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 18 years ago
  92. 58e123d Verify changes to the trunk go to the normal checkins list by Neal Norwitz · 18 years ago
  93. 8549ce3 Updates of recent changes to logging. by Vinay Sajip · 18 years ago
  94. cc40ff8 Bug #1713535: typo in logging example. by Georg Brandl · 18 years ago
  95. 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 18 years ago
  96. 2ebc4d8 Oops, these tests do not run on Windows CE. by Thomas Heller · 18 years ago
  97. 1ad576c Do not truncate 64-bit pointers to 32-bit integers. by Thomas Heller · 18 years ago
  98. 22ea025 Minor fix of PCBuild8/_ctypes vcproj, moving include dir into the .vsprops file. by Kristján Valur Jónsson · 18 years ago
  99. 465bdcc Update the pcbuild8 solution. Straightened out the _ctypes project by using a .vsproj file and a masm64.rules file to avoid redundancy by Kristján Valur Jónsson · 18 years ago
  100. db3bfdf On 64-bit Windows, ffi_arg must be 8 bytes long. This fixes the by Thomas Heller · 18 years ago