1. 0f7f676 test_distutils: test_build_ext uses EnvironGuard (#1458) by Victor Stinner · 7 years ago
  2. 846466d build_ext: correctly parse the link_objects user option (closes #1703178) by Benjamin Peterson · 8 years ago
  3. bf2dca9 English spelling and grammar fixes by Martin Panter · 8 years ago
  4. 8d496ad Issue #27171: Fix typos in documentation, code comments, and tests by Martin Panter · 8 years ago
  5. 1f70b87 Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite. by Ned Deily · 10 years ago
  6. 57bc6da Issue #19492: Silently skipped distutils tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  7. 25a23ef Issue #19600: Use specific asserts in distutils tests. by Serhiy Storchaka · 11 years ago
  8. 72121c6 - Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  9. c82da81 Fix test failure for shared builds caused by #1326113 fix by Éric Araujo · 12 years ago
  10. e897a74 Fix parsing of build_ext --libraries option (#1326113) by Éric Araujo · 12 years ago
  11. c811fb2 Add tests for build_ext --user (backport from 3.2) by Éric Araujo · 13 years ago
  12. 04612d6 Refactor helpers for compiling the xx module in distutils tests. by Éric Araujo · 13 years ago
  13. 053c6ad Issue #9516: Correct and expand OS X deployment target tests in distutils by Ned Deily · 13 years ago
  14. 63144c6 Issue #12141: Install a copy of template C module file so that by Ned Deily · 13 years ago
  15. a70286b Issue #9516: avoid errors in sysconfig when MACOSX_DEPLOYMENT_TARGET is set in shell. by Ronald Oussoren · 13 years ago
  16. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  17. 54052c0 Only hack cmd.library_dirs when running under Py_ENABLE_SHARED. Tested both by Barry Warsaw · 14 years ago
  18. f084376 Fix issue 10126 for Python 2.7 by using $RUNSHARED to find the by Barry Warsaw · 14 years ago
  19. e9df5d6 Backport fix for #10126 by Éric Araujo · 14 years ago
  20. ef253ac removed the local copy of xxmodule, and skip only test_build_ext when xxmodule is not found, not the whole unittest by Tarek Ziadé · 14 years ago
  21. 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 14 years ago
  22. 5501e6a fixed various failures and environment alterations in distutils.test_build_ext by Tarek Ziadé · 14 years ago
  23. 7e48ff8 simplified the fallback case by Tarek Ziadé · 14 years ago
  24. fbf50b8 provide a fallback for xxmodule.c in case the buildir is not present by Tarek Ziadé · 14 years ago
  25. b30868a copied back the build_ext tests from 2.6 by Tarek Ziadé · 14 years ago
  26. 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 15 years ago
  27. 2b06d42 Changed distutils tests to avoid environment alteration by Tarek Ziadé · 15 years ago
  28. 6633a66 Fixed distutils test. by Hirokazu Yamamoto · 15 years ago
  29. 51f32c0 reverted changes for #6459 (doesn't apply on 2.x) by Tarek Ziadé · 15 years ago
  30. 23a3775 fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit' by Tarek Ziadé · 15 years ago
  31. 8c40001 Fixed #6455 (the test shall use pyd files under win32, rather than so files) by Tarek Ziadé · 15 years ago
  32. 42b145d Sets the compiler attribute to keep the old behavior for third-party packages. by Tarek Ziadé · 15 years ago
  33. e670e5a Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option) by Tarek Ziadé · 15 years ago
  34. 65ec61e Fixed #6403 : package path usage for build_ext by Tarek Ziadé · 15 years ago
  35. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 15 years ago
  36. 3fbcc60 Fixed 6365: wrong inplace location for build_ext if the extension had dots by Tarek Ziadé · 15 years ago
  37. 7d7127d fixed the 'package' option of build_ext by Tarek Ziadé · 15 years ago
  38. fcc7f03 Fixed the library extension when distutils build_ext is used inplace by Tarek Ziadé · 15 years ago
  39. 8d252e4 not running this test with MSVC6 by Tarek Ziadé · 15 years ago
  40. cbb4f9e #6022 fixed test_get_outputs so it doesn't leaves a test file in the cwd by Tarek Ziadé · 15 years ago
  41. d547144 adding void to the c function by Tarek Ziadé · 15 years ago
  42. 1652410 added an inifoo in the C file, to avoid a warning by the MSVC9 linker by Tarek Ziadé · 15 years ago
  43. 972480d fixed #5977: distutils build_ext.get_outputs was not using the inplace option by Tarek Ziadé · 15 years ago
  44. 2bb084e fixed test_build_ext for win32 by Tarek Ziadé · 15 years ago
  45. d5d8342 fixed #5984 and improved test coverage by Tarek Ziadé · 15 years ago
  46. e2be83d Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used by Tarek Ziadé · 15 years ago
  47. 3bb5a96 fixed the test for win32 CompileError by Tarek Ziadé · 15 years ago
  48. 9e47ce4 #5583 Added optional Extensions in Distutils by Tarek Ziadé · 15 years ago
  49. dda92f7 Issue #5052: make Distutils compatible with 2.3 again. by Tarek Ziadé · 15 years ago
  50. 1369900 Fix for #5257: refactored all tests in distutils, so they use a temporary directory. by Tarek Ziadé · 15 years ago
  51. 6f1d931 reverted leak fix, to use the one done in py3k branch (r67382) by Tarek Ziadé · 15 years ago
  52. b516c12 fixing the leak introduced in r69304 by Tarek Ziadé · 15 years ago
  53. 0d4fd34 Fixed #5132: enable extensions to link on Solaris by Tarek Ziadé · 15 years ago
  54. a52f1c6 Fix test_build_ext.py to work when building in a separate directory. by Neil Schemenauer · 15 years ago
  55. 1672e10 Issue #3925: Ignores shutil.rmtree error on cygwin too. by Hirokazu Yamamoto · 16 years ago
  56. b4701e6 On Windows, we must build a debug version iff running a debug build of Python by Thomas Heller · 16 years ago
  57. 88e2acf GHOP #257: test distutils' build_ext command, written by Josip Dzolonga. by Georg Brandl · 16 years ago