1. a76bbd4 Import the new Extension class, so setup scripts can by Greg Ward · 24 years ago
  2. 5322f00 Overhauled to expect 'self.extensions' (taken from 'ext_modules' in the by Greg Ward · 24 years ago
  3. 3ca54bc Provides the Extension class, a nicer way to describe C/C++ extensions than by Greg Ward · 24 years ago
  4. 6c16019 Fixed typo noted by Guido Kollerie <gkoller@cs.vu.nl> in example code. by Fred Drake · 24 years ago
  5. 7f91cf9 Add 'r' to docstrings to avoid expanded backslash escapes. (Ka-Ping Yee) by Guido van Rossum · 24 years ago
  6. 3e7b133 Added concrete example of when separate build and install might be by Greg Ward · 24 years ago
  7. 9815011 Cosmetic tweak. by Greg Ward · 24 years ago
  8. 66ac93e Catch CCompiler exceptions in 'setup()'. by Greg Ward · 24 years ago
  9. 3add77f Import exceptions from errors.py, not ccompiler.py. by Greg Ward · 24 years ago
  10. 39804cb Removed exceptions -- now in errors.py to avoid expensive import of ccompiler. by Greg Ward · 24 years ago
  11. c1cb049 Moved the CCompiler exceptions here, to avoid having to import ccompiler.py by Greg Ward · 24 years ago
  12. d151711 Changed to catch compile/link failures and raise CompileError, LibError, by Greg Ward · 24 years ago
  13. adda156 Added 'dump_options()' for debugging output. by Greg Ward · 24 years ago
  14. c32d9a6 Factored '_set_command_options()' out of 'get_command_obj()'. by Greg Ward · 24 years ago
  15. 2129032 Changed order so 'clean' is right after the 'build' commands. by Greg Ward · 24 years ago
  16. fbb04c4 Only print debugging output if DEBUG (imported from distutils.core) is true. by Greg Ward · 24 years ago
  17. 0eeebfd Moved warnings out of 'finalize_options()' into 'run()'. by Greg Ward · 24 years ago
  18. 9581144 Typo fix in comment. by Greg Ward · 24 years ago
  19. 4fb29e5 Some far-reaching naming changes: by Greg Ward · 24 years ago
  20. 25bfd0e Article about 1.6 new features by Andrew M. Kuchling · 24 years ago
  21. e5b267c Patch from Andrew Kuchling: prune out the build and source distribution by Greg Ward · 24 years ago
  22. 51def7d Support for the "install_headers" command: distribution option 'headers' by Greg Ward · 24 years ago
  23. 2d238c5 'mkpath()' now detects non-string 'name' arguments -- this is a fairly common by Greg Ward · 24 years ago
  24. 4638090 Tweaked description, help text. by Greg Ward · 24 years ago
  25. cae5a1f Support for the "install_headers" command: by Greg Ward · 24 years ago
  26. aa0e771 Added 'install_headers' command to install C/C++ header files. by Greg Ward · 24 years ago
  27. 847a996 Patch from M.-A. Lemburg: Python on UNIX now trusts PYTHONHOME unconditionally by Jeremy Hylton · 24 years ago
  28. b80a777 Added documentation for gettempprefix(). by Fred Drake · 24 years ago
  29. 262e83c This module is obsolete now that the standard exceptions are built-in. by Barry Warsaw · 24 years ago
  30. 0233075 Added documentation for TemporaryFile() and the siffix parameter to mktemp(). by Fred Drake · 24 years ago
  31. 675ac28 The standard exception classes. Moved here from ../Modules/_exceptions.c by Barry Warsaw · 24 years ago
  32. f17861b Added exceptions.o to the list of object to build in this subdir. by Barry Warsaw · 24 years ago
  33. c8019ad _exceptions.c is moved to ../Python/exceptions.c by Barry Warsaw · 24 years ago
  34. b1387aa The _exceptions module is moved to the Python subdirectory. by Barry Warsaw · 24 years ago
  35. 57c9a66 When building on Solaris and the compiler is GCC, use '$(CC) -G' to by Greg Ward · 24 years ago
  36. 99d707a Piers Lauder <piers@cs.su.oz.au>: by Fred Drake · 24 years ago
  37. 6153fa1 Guido's rewording of my definition of "root package", with an addition by me. by Greg Ward · 24 years ago
  38. 5213400 Rene Liebscher: check if the extension file (.so or .pyd) is by Greg Ward · 24 years ago
  39. 59d382e A grab-bag of wording tweakage. by Greg Ward · 24 years ago
  40. 0e48cfd Factored out code for extracting-or-creating one of the option by Greg Ward · 24 years ago
  41. 37af1c3 Added the DEBUG global (set from the DISTUTILS_DEBUG environment variable). by Greg Ward · 24 years ago
  42. 8bbba17 Fixed a couple of long-hidden bugs (amazing what you find when you by Greg Ward · 24 years ago
  43. 8415edb Built-in class-based standard exceptions. Written by Fredrik Lundh. by Barry Warsaw · 24 years ago
  44. 992cb8a Added a test to catch the base class. by Barry Warsaw · 24 years ago
  45. 9357854 For backwards compatibility, simply import everything from the by Barry Warsaw · 24 years ago
  46. 78e6c67 All the exception building related stuff has been moved out of this by Barry Warsaw · 24 years ago
  47. cfa2dba Added the _exceptions module, implementing the built-in class-based by Barry Warsaw · 24 years ago
  48. f242aa0 Py_Initialize(): Now that standard exceptions are builtin, we don't by Barry Warsaw · 24 years ago
  49. c094ac8 Now that standard exceptions are builtin, we don't need two phase init by Barry Warsaw · 24 years ago
  50. fe55e86 Take the basename of the script before concatenating it with the build dir. by Greg Ward · 24 years ago
  51. fd267d9 Piers Lauder <piers@cs.su.oz.au>: by Fred Drake · 24 years ago
  52. 1226588 bltin_exc: Removed the leaf_exc flag in the structure, which was only by Barry Warsaw · 24 years ago
  53. 101de37 Fix to use 'change_root()' rather than directly mangling path. by Greg Ward · 24 years ago
  54. 80fa55e Improvements to Bastian's build_scripts command: by Greg Ward · 24 years ago
  55. 029e302 Added comment to remind us of the (temporary?) obsolescense of the by Greg Ward · 24 years ago
  56. e3d1752 Use Distribution's 'has_scripts()' method instead of directly accessing by Greg Ward · 24 years ago
  57. a4efe65 Bastian Kleineidam: the "build_scripts" command. by Greg Ward · 24 years ago
  58. 8d5881a Bastian Kleineidam: the "build_scripts" command and changes by Greg Ward · 24 years ago
  59. fcd974e Normalized all the end-of-class lines. by Greg Ward · 24 years ago
  60. 51060be Remove unused "import curses". by Guido van Rossum · 24 years ago
  61. c580dae Fix a problem reported by Oleg Broytmann, who complains that very by Guido van Rossum · 24 years ago
  62. a570c05 Catch failure to open installed Makefile, and report it as a by Greg Ward · 24 years ago
  63. f1dc5fa Updated docs to list all the new methods and functions. The docs are by Andrew M. Kuchling · 24 years ago
  64. 03e644b Changes by AMK: Use HAVE_NCURSES_H to include correct header file by Andrew M. Kuchling · 24 years ago
  65. 22b88ce Oliver Andrich's ncurses-specific curses module, version 1.5b1 by Andrew M. Kuchling · 24 years ago
  66. caee2fe (py-execute-region): Based on suggestions by Francois Pinard and Skip by Barry Warsaw · 24 years ago
  67. 40313cf Fix 'get_command_obj()' so it checks if a command object has an attribute by Greg Ward · 24 years ago
  68. 77751c0 Added some debuging output (actually moved here from dist.py) -- by Greg Ward · 24 years ago
  69. 981f736 Don't take advantage of OptionDummy's new "auto-initialization" feature by Greg Ward · 24 years ago
  70. 4746077 Fixed so options from config files and command lines actually work: by Greg Ward · 24 years ago
  71. 7cb42cd From Greg Ward <gward@python.net>: by Fred Drake · 24 years ago
  72. d7ad503 Fixed command description. by Greg Ward · 24 years ago
  73. 5edcd90 Use 'get_command_obj()' instead of 'find_command_obj()'. by Greg Ward · 24 years ago
  74. 3c67b1d OptionDummy now has a constructor that takes a list of options: each string by Greg Ward · 24 years ago
  75. 732745b Tweaked usage message. by Greg Ward · 24 years ago
  76. d5d8a99 Marching towards full support of config files: thoroughly overhauled the by Greg Ward · 24 years ago
  77. 32000e8 Reduce opt level for BeOS - Donn Cave. by Guido van Rossum · 24 years ago
  78. 1d10f3e Changed list_directory() somewhat. It is now only called when there by Guido van Rossum · 24 years ago
  79. 4355093 Tweaked output of 'copy_file()': if copying to a new name, show the whole by Greg Ward · 24 years ago
  80. a4adafd Changed the semantics of the 'sub_commands' list: instead of function by Greg Ward · 24 years ago
  81. f355d47 Check if the claimed build directory doesn't exist, and warn that we don't by Greg Ward · 24 years ago
  82. 44a61bb Added 'has_scripts()', 'has_data_files()' methods. by Greg Ward · 24 years ago
  83. 36c36fe Added missing import. by Greg Ward · 24 years ago
  84. f7edea7 Lyle Johnson: added stubs for the four miscellaneous methods that must be by Greg Ward · 24 years ago
  85. 5299b6a Added support for the 'export_symbols' parameter to 'link_shared_object()' by Greg Ward · 24 years ago
  86. 974f70d Add call to putheader('Host', 'www.python.org') to the example. by Guido van Rossum · 24 years ago
  87. 95713eb Fix the test for socklen_t so that it searches through sys/socket.h. by Guido van Rossum · 24 years ago
  88. 8c5cede New description for math.frexp() -- poor description noted by Francois Pinard. by Fred Drake · 24 years ago
  89. 8a6d4d9 macfsn should always be included, like exceptions and site. by Jack Jansen · 24 years ago
  90. 11b0936 Donn Cave <donn@oz.net>: BeOS (up to 5.0) lacks <netinet/tcp.h>. by Fred Drake · 24 years ago
  91. d9c01a5 Manually added HRHTMLRenderingLibAvailable. by Jack Jansen · 24 years ago
  92. 036194c Slowly becoming functional... by Jack Jansen · 24 years ago
  93. ebd0106 Interface to macOS 9 HTMLRenderingLib. Not yet functional. by Jack Jansen · 24 years ago
  94. 8711a2e Changed default developer name. Added some guiding comments. by Gregory P. Smith · 24 years ago
  95. 2c067ef Template for writing Distutils command modules. by Gregory P. Smith · 24 years ago
  96. 86ee81e Contribution from Harry Henry Gebel: the 'bdist_rpm' command. by Gregory P. Smith · 24 years ago
  97. 21b9e91 In 'install_misc': 'self.outfiles' defaults to the empty list, so we don't by Gregory P. Smith · 24 years ago
  98. 6a901dd List data files are listed in the Distribution attribute 'data_files', by Gregory P. Smith · 24 years ago
  99. c59d4e0 Added the 'bdist_base' option, the base temp directory for all bdist commands. by Gregory P. Smith · 24 years ago
  100. e30b7a9 Added 'get_inputs()' methods, needed by the "install" command's 'get_inputs()'. by Gregory P. Smith · 24 years ago