1. 8402324 Issue #25607: Restore old distutils logging threshold after running tests that by Serhiy Storchaka · 9 years ago
  2. fda7fe0 Restore old distutils logging threshold after running test_log. by Serhiy Storchaka · 9 years ago
  3. 562b7cb fix parsing reST with code or code-block directives (closes #23063) by Benjamin Peterson · 10 years ago
  4. ed14c86 Issue #8876: distutils now falls back to copying files when hard linking doesn't work. by Antoine Pitrou · 10 years ago
  5. e6edc03 #22512: move distutils rpm test's .rpmdb to testing tmpdir. by R David Murray · 10 years ago
  6. 623ae29 #10510: Fix bug in forward port of 2.7 distutils patch. by R David Murray · 10 years ago
  7. 9ce6967 #10510: make distuitls upload/register use HTML standards compliant CRLF. by R David Murray · 10 years ago
  8. 9833fcb use patch context manager instead of decorator because the decorator 'leaks' metadata onto the function by Benjamin Peterson · 10 years ago
  9. df0eb95 remove various dead version checks (closes #22349) by Benjamin Peterson · 10 years ago
  10. d28c5f0 #22315: Use an existent directory for 'src' to trigger appropriate behavior. by Jason R. Coombs · 10 years ago
  11. 47f44c9 #22315: Provide an actual directory during test invocation. by Jason R. Coombs · 10 years ago
  12. e572ce3 #22315: Use technique outlined in test_file_util by Jason R. Coombs · 10 years ago
  13. 4b02e70 #22315: Add test to capture the failure. by Jason R. Coombs · 10 years ago
  14. 1be2e82 Correct indent by Jason R. Coombs · 10 years ago
  15. b4efbe8 Remove unused import by Jason R. Coombs · 10 years ago
  16. 6685883 Issue #22182: Use e.args to unpack exceptions correctly in distutils.file_util.move_file. by Berker Peksag · 10 years ago
  17. 7bc5fb6 Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compiler by Ned Deily · 10 years ago
  18. 04cdfa1 Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite. by Ned Deily · 10 years ago
  19. 2e4d3b1 Issue #21722: The distutils "upload" command now exits with a non-zero return code when uploading fails. by Antoine Pitrou · 10 years ago
  20. e5de66e - Issue #17752: Fix distutils tests when run from the installed location. by doko@ubuntu.com · 10 years ago
  21. a0fe1f7 Merge 3.3 (#4931) by Éric Araujo · 11 years ago
  22. fc773a2 Avoid “error: None” messages from distutils (#4931). by Éric Araujo · 11 years ago
  23. bfd488c Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) by Zachary Ware · 11 years ago
  24. 2ee2c95 Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) by Zachary Ware · 11 years ago
  25. 20d5ade Fix TypeError on "setup.py upload --show-response". by Antoine Pitrou · 11 years ago
  26. 335a512 Fix TypeError on "setup.py upload --show-response". by Antoine Pitrou · 11 years ago
  27. e8d07a9 Issue #12226: HTTPS is now used by default when connecting to PyPI. by Antoine Pitrou · 11 years ago
  28. f60b7df Issue #12226: HTTPS is now used by default when connecting to PyPI. by Antoine Pitrou · 11 years ago
  29. 23b8cd9 Fix urllib.request.build_opener mocking in test_distutils (should fix some random buildbot failures) by Antoine Pitrou · 11 years ago
  30. 6783487 Fix urllib.request.build_opener mocking in test_distutils (should fix some random buildbot failures) by Antoine Pitrou · 11 years ago
  31. 29fd05f Issue #20045: Fix "setup.py register --list-classifiers". by Antoine Pitrou · 11 years ago
  32. 716b722 Issue #20045: Fix "setup.py register --list-classifiers". by Antoine Pitrou · 11 years ago
  33. 492b989 Fix DeprecationWarnings in test suite by Antoine Pitrou · 11 years ago
  34. 3f5f436 Issue #19492: Silently skipped distutils tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  35. 3c02ece Issue #19492: Silently skipped distutils tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  36. eaec359 Issue #19760: Silence sysconfig's 'SO' key deprecation warnings in tests. by Serhiy Storchaka · 11 years ago
  37. 9121f8d Issue 19555 for distutils, plus a little clean up (pyflakes, line lengths). by Barry Warsaw · 11 years ago
  38. 932c616 Issue #19600: Use specific asserts in distutils tests. by Serhiy Storchaka · 11 years ago
  39. 3998915 Issue #19600: Use specific asserts in distutils tests. by Serhiy Storchaka · 11 years ago
  40. b41c254 Correct long line by Jason R. Coombs · 11 years ago
  41. 9d78e41 Issue #19586: Update remaining deprecated assertions to their preferred usage. by Jason R. Coombs · 11 years ago
  42. 6f87a08 Update more usage of assertEqual by Jason R. Coombs · 11 years ago
  43. e9f0311 Use preferred assertEqual by Jason R. Coombs · 11 years ago
  44. 75c40ae Use preferred assertEqual form. Correct indentation. by Jason R. Coombs · 11 years ago
  45. cb37641 Issue #7408: Forward port limited test from Python 2.7, fixing failing buildbot tests on BSD-based platforms. by Jason R. Coombs · 11 years ago
  46. a2ebfd0 Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2. by Jason R. Coombs · 11 years ago
  47. 3492e39 Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2. by Jason R. Coombs · 11 years ago
  48. 2a1838b Issue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes. by Andrew Kuchling · 11 years ago
  49. 5e2d456 Issue #19544 and Issue #6516: Restore support for --user and --group parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516. by Andrew Kuchling · 11 years ago
  50. 77796e4 Fix failing test incorrectly merged in b1244046f37a by Jason R. Coombs · 11 years ago
  51. 0048ae0 Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was unable to test due to bab0cbf86835. by Jason R. Coombs · 11 years ago
  52. 375dc9b Merge with 3.3 for Issue #19544 and Issue #7457 by Jason R. Coombs · 11 years ago
  53. 7ec3e56 Backout d80207d15294. by Georg Brandl · 11 years ago
  54. e71fb28 Merge with 3.3 for Issue #19286. by Jason R. Coombs · 11 years ago
  55. ca9242f Merge with 3.2 for Issue #19286. by Jason R. Coombs · 11 years ago
  56. 93912b9 Issue #19286: Adding test demonstrating the failure when a directory is found in the package_data globs. by Jason R. Coombs · 11 years ago
  57. 5395d21 merge 3.3 (#19114) by Benjamin Peterson · 11 years ago
  58. 56b143d condense two tests with the same name (closes #19114) by Benjamin Peterson · 11 years ago
  59. e0c6916 #18741: merge with 3.3. by Ezio Melotti · 11 years ago
  60. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  61. 61c3556 Issue #17177: Stop using imp in distutils by Brett Cannon · 11 years ago
  62. 9734568 Issue #18080: When building a C extension module on OS X, if the compiler by Ned Deily · 11 years ago
  63. 6750282 Issue #18080: merge from 3.3 by Ned Deily · 11 years ago
  64. 7025349 merge with 3.3 by Georg Brandl · 11 years ago
  65. 521ed52 Closes issue #17732: ignore install-directory specific options in by Georg Brandl · 11 years ago
  66. f7520dc Fix uploadTestCase to work even when HTTPSConnection is not available. by Ezio Melotti · 11 years ago
  67. 6d3d0fe - Issue #16754: Fix the incorrect shared library extension on linux. Introduce by doko@ubuntu.com · 12 years ago
  68. 1621d77 - Issue #16754: Fix the incorrect shared library extension on linux. Introduce by doko@ubuntu.com · 12 years ago
  69. d5537d0 - Issue #16754: Fix the incorrect shared library extension on linux. Introduce by doko@ubuntu.com · 12 years ago
  70. 45c9704 use the HTTPS for pypi upload by Benjamin Peterson · 12 years ago
  71. 469da97 #11420: merge with 3.3. by Ezio Melotti · 12 years ago
  72. e5e7a7c #11420: merge with 3.2. by Ezio Melotti · 12 years ago
  73. c28f6fa #11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters. by Ezio Melotti · 12 years ago
  74. 16b5c13 Merge 3.3, issue #17047: remove doubled words found in 2.7 to by Terry Jan Reedy · 12 years ago
  75. 98472b8 Merge 3.2, issue #17047: remove doubled words found in 2.7 to by Terry Jan Reedy · 12 years ago
  76. c30b7b1 Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*, by Terry Jan Reedy · 12 years ago
  77. f011881 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  78. 26f1166 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  79. 9d0add0 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  80. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  81. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  82. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  83. bb7da03 Merge fixes for #13614, #13512 and #7719 from 3.3 by Éric Araujo · 12 years ago
  84. 3f7c0e4 Merge fixes for #13614, #13512 and #7719 from 3.2 by Éric Araujo · 12 years ago
  85. 8b503c0 Fix setup.py register failure with invalid rst in description (#13614). by Éric Araujo · 12 years ago
  86. 3e4a3dc Ignore .nfs* files in distutils (#7719). by Éric Araujo · 12 years ago
  87. d17833d Closes #16135: Removal of OS/2 support (distutils) by Jesus Cea · 12 years ago
  88. 6c779ea Issue #15364: Fix test_srcdir for the installed case. by Ned Deily · 12 years ago
  89. 46874ad Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path. by Richard Oudkerk · 12 years ago
  90. c7a5a76 Issue #15184: Some config variables in test_sysconfig_module by Ned Deily · 12 years ago
  91. df8aa2b Issue #15184: Ensure consistent results of OS X configuration by Ned Deily · 12 years ago
  92. fc20d77 Issue #13590: OS X Xcode 4 - improve support for universal extension modules by Ned Deily · 12 years ago
  93. 00b41fc Merge 3.2 by Éric Araujo · 13 years ago
  94. a420c82 Backout buggy patch committed for #13719 by Éric Araujo · 13 years ago
  95. c53d624 Merge 3.2 by Éric Araujo · 13 years ago
  96. c3705d3 Fix NameError from #13719 fix by Éric Araujo · 13 years ago
  97. 6a59b70 Merge 3.2 by Éric Araujo · 13 years ago
  98. e413c06 Make distutils’ upload command work with bdist_msi products (#13719). by Éric Araujo · 13 years ago
  99. 408026c Merge 3.2 by Éric Araujo · 13 years ago
  100. 845a772 Set archive format explicitly in one distutils test by Éric Araujo · 13 years ago