1. 3e3eace Fixed #6131: test_modulefinder leaked when run after test_distutils by Tarek Ziadé · 15 years ago
  2. 578a228 Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. by Raymond Hettinger · 15 years ago
  3. 7937d93 Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g by Jeffrey Yasskin · 15 years ago
  4. 822b87f Deprecate contextlib.nested(). The with-statement now provides this functionality directly. by Raymond Hettinger · 15 years ago
  5. b4d2d31 Issue 5150: Add rstrip() option to IDLE's format menu. by Raymond Hettinger · 15 years ago
  6. 8de212b Backport smtplib auth tests from r72990. by R. David Murray · 15 years ago
  7. 460f6c8 using 'tar' then 'gzip' in the test, because 'tar -czf' is not supported under some platforms by Tarek Ziadé · 15 years ago
  8. 9e5d2dc Fixed #6048: Distutils uses the tarfile module instead of the tar command now by Tarek Ziadé · 15 years ago
  9. 6a11102 explicitly close files by Philip Jenvey · 15 years ago
  10. dd0388a further hint to where the open docs really are by Philip Jenvey · 15 years ago
  11. 80319a3 explicitly close the file, merged from py3k by Philip Jenvey · 15 years ago
  12. 1075c9b switch library reference and language reference by Benjamin Peterson · 15 years ago
  13. d67ea7d fix issue #6121 by stripping spaces from the argument in the 'help' function. by R. David Murray · 15 years ago
  14. 1afec5d plug ref leak by Benjamin Peterson · 15 years ago
  15. 39d43b4 correctly handle descrs with __missing__ by Benjamin Peterson · 15 years ago
  16. a68cad1 Fix field name conflicts for named tuples. by Raymond Hettinger · 15 years ago
  17. 55d8828 Fixes issue 6110 by Ronald Oussoren · 15 years ago
  18. aafa18a teach the peepholer about SETUP_WITH by Benjamin Peterson · 15 years ago
  19. 4ee8282 #6112: list.remove raises ValueError, not RuntimeError. by Georg Brandl · 15 years ago
  20. 57bef68 Issue 5794: fix cPickle's unpickling of recursive tuples. by Collin Winter · 15 years ago
  21. 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 15 years ago
  22. 0451661 Make assertSequenceEqual error messages less cryptic, particularly for nested sequences. by Michael Foord · 15 years ago
  23. 7285a26 fix error handling by Benjamin Peterson · 15 years ago
  24. 49a6b0e take into account the fact that SETUP_WITH pushes a finally block by Benjamin Peterson · 15 years ago
  25. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  26. 179bf21 Issue 5670: special-case pickling of dicts. This nearly doubles the performance of dict pickling in cPickle. by Collin Winter · 15 years ago
  27. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
  28. 176a56c make class skipping decorators the same as skipping every test of the class by Benjamin Peterson · 15 years ago
  29. a7724e5 stop using Py_FindMethod by Benjamin Peterson · 15 years ago
  30. 36b6dfc Add Misc/python.pc to the list of ignored files by Antoine Pitrou · 15 years ago
  31. f2caeed Issue #3585: Add pkg-config support. by Antoine Pitrou · 15 years ago
  32. 0b09c42 Issue #6050: Don't fail extracting a directory from a zipfile if by Martin v. Löwis · 15 years ago
  33. 53b578e Issue #6065: Do not try to build a version-independent by Martin v. Löwis · 15 years ago
  34. d03e1b4 add a versionadded tag for set_tunnel by Gregory P. Smith · 15 years ago
  35. d49e375 Issue #1309352: fcntl now converts its third arguments to a C `long` rather by Antoine Pitrou · 15 years ago
  36. 4fe3858 Fix build under Windows by Antoine Pitrou · 15 years ago
  37. e266f25 Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. by Senthil Kumaran · 15 years ago
  38. 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
  39. 3724d6c Add smtplib test from issue 5259. by R. David Murray · 15 years ago
  40. 91d517c remove mention of old ctypes version by Benjamin Peterson · 15 years ago
  41. 40748f3 reorder name by Benjamin Peterson · 15 years ago
  42. e5afa3b support building with subversion 1.7 #6094 by Benjamin Peterson · 15 years ago
  43. f3bd687 Issue #3877: skip a test_fileio subtest on all BSDs, not only FreeBSD by Antoine Pitrou · 15 years ago
  44. 76dd2d1 Some pid_t-expecting or producing functions were forgotten in r72852. by Antoine Pitrou · 15 years ago
  45. 5e858fe Issue #1983: Fix functions taking or returning a process identifier to use by Antoine Pitrou · 15 years ago
  46. 4b94b19 Issue 6089: str.format raises SystemError. by Eric Smith · 15 years ago
  47. 8254d39 Fix spelling left over from testing. by R. David Murray · 15 years ago
  48. 812e1c8 Don't be so wordy in requires('network') in case other tests by R. David Murray · 15 years ago
  49. ad3058e Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns by R. David Murray · 15 years ago
  50. eae1b28 #6078: _warnings is a builtin module and has no standard init_warnings function. by Georg Brandl · 15 years ago
  51. bc4af35 #6086: fix spelling and use a better exception to catch. by Georg Brandl · 15 years ago
  52. 346a38d Correction in softspace behavior description. by Georg Brandl · 15 years ago
  53. e15048e s/use/call/ by Georg Brandl · 15 years ago
  54. 22396da Fix confusing wording. by Georg Brandl · 15 years ago
  55. 012408c Fix references to file-related functions and methods (os.* vs file.*). by Georg Brandl · 15 years ago
  56. aafd6b8 fixed encoding by Tarek Ziadé · 15 years ago
  57. fa0123b #6084: fix example. by Georg Brandl · 15 years ago
  58. 5a8d7eb Use raise X(y). by Georg Brandl · 15 years ago
  59. 739aa36 don't use subprocess.call with PIPEs as the child can fill the pipe buf and by Philip Jenvey · 15 years ago
  60. 9b6f13e Fix-up moving average example. by Raymond Hettinger · 15 years ago
  61. a50af06 Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072. by Michael Foord · 15 years ago
  62. a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 15 years ago
  63. ac2380b #6051: refer to email examples for better way to construct email messages. by Georg Brandl · 15 years ago
  64. 498a9b3 #6055: refer to "sqlite3" consistently. by Georg Brandl · 15 years ago
  65. 464432d Update bug tracker URL. by Georg Brandl · 15 years ago
  66. c8d30fe Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of by Jeffrey Yasskin · 15 years ago
  67. cf4ad76 typos in ctypes Module by Mark Dickinson · 15 years ago
  68. 1ef9c83 Issue 6066: POP_MARK was not in pickle protocol 0. by Collin Winter · 15 years ago
  69. 364b221 Remove some old MacPython files that are no longer relevant. by Ronald Oussoren · 15 years ago
  70. cc00a26 Remove some traces of 'MacPython' by Ronald Oussoren · 15 years ago
  71. f44c654 This patch ensures that the pydoc_data package gets installed. This is needed by Ronald Oussoren · 15 years ago
  72. 50f362f Note that ordered dictionaries work with reversed(). by Raymond Hettinger · 15 years ago
  73. 7d7127d fixed the 'package' option of build_ext by Tarek Ziadé · 15 years ago
  74. f03c42f Issue 6032: fix refleaks in test_urllib2_localnet. by Collin Winter · 15 years ago
  75. 61328ee While I was modifying test_trace, it threw an exception when I accidentally by Jeffrey Yasskin · 15 years ago
  76. fceb5d4 Issue 6037: MutableSequence.__iadd__ should return self. by Raymond Hettinger · 15 years ago
  77. 07bbfcc Fixed #6053 - win32 fixes for distutils tests by Tarek Ziadé · 15 years ago
  78. 6deb574 working with relative paths to avoid tar warnings on absolute paths by Tarek Ziadé · 15 years ago
  79. fcc7f03 Fixed the library extension when distutils build_ext is used inplace by Tarek Ziadé · 15 years ago
  80. 5605416 chop off slash by Benjamin Peterson · 15 years ago
  81. 6dd6b61 fixed the test name by Tarek Ziadé · 15 years ago
  82. cadaf55 ignore .rst files in sphinx its self by Benjamin Peterson · 15 years ago
  83. 6f826ed pep8-fied distutils.archive_util + added minimum test coverage by Tarek Ziadé · 15 years ago
  84. 513a8b7 pep8-fied distutils.dir_util by Tarek Ziadé · 15 years ago
  85. 294c9d9 removed sys.platform == 'mac' usage in distutils.dir_util by Tarek Ziadé · 15 years ago
  86. 016828d removed sys.platform == 'mac' support in distutils.dist.parse_command_line and improved test coverage by Tarek Ziadé · 15 years ago
  87. 50626db Issue #6044: remove confusing wording from complex -> integer and by Mark Dickinson · 15 years ago
  88. 8d252e4 not running this test with MSVC6 by Tarek Ziadé · 15 years ago
  89. 903953c #5935: mention that BROWSER is looked for in PATH. by Georg Brandl · 15 years ago
  90. ee8e08b #5942: Copy over flag table from dbm.rst which is clearer. by Georg Brandl · 15 years ago
  91. 4c8b1c7 #6017: better document behavior of dictiterators when the dict is changed. by Georg Brandl · 15 years ago
  92. 5e88eea part of #4144: fix exception message in console session. by Georg Brandl · 15 years ago
  93. a4f9018 Added NEWS for r72698. by Hirokazu Yamamoto · 15 years ago
  94. b24bb27 Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. by Hirokazu Yamamoto · 15 years ago
  95. 0c3b4c6 typo by Benjamin Peterson · 15 years ago
  96. eb9fb2c update by Benjamin Peterson · 15 years ago
  97. a27dbc6 completely ignore old-style stuff for type checking overloading by Benjamin Peterson · 15 years ago
  98. 94eaba7 deal with old-style classes in issubclass and isinstance by Benjamin Peterson · 15 years ago
  99. fb6fb06 properly lookup __instancecheck__ and __subclasscheck__ by Benjamin Peterson · 15 years ago
  100. 757b3c9 use skipTest() by Benjamin Peterson · 15 years ago