Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add backwards compatibility. | Marc-André Lemburg | 2001-07-26 | 1 | -1/+6 |
| | |||||
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 3 | -13/+13 |
| | |||||
* | Undo revision 1.7: always mangle a #! line containing "python" to point | Greg Ward | 2001-07-25 | 1 | -4/+2 |
| | | | | | | | | | | | | | | to the current Python interpreter (ie. the one used for building/installation), even (especially!) if "/usr/bin/env" appears in the #! line. Rationale: installing scripts with "#!/usr/bin/env python" is asking for trouble, because 1) it might pick the wrong interpreter (not the one used to build/install the script) 2) it doesn't work on all platforms (try it on IRIX 5, or on Linux with command-line options for python) 3) "env" might not be in /usr/bin | ||||
* | Don't "import *" from stat at all -- just import what's needed, and | Greg Ward | 2001-07-25 | 1 | -1/+1 |
| | | | | do it back in copy_file() (not at module level). | ||||
* | Patch #429442 from Jason Tishler: Corrects sys.platform and | Andrew M. Kuchling | 2001-07-20 | 1 | -0/+1 |
| | | | | | distutils.util.get_platform() problems caused by the cruft contained in Cygwin's uname -s. | ||||
* | Minor changes for stylistic cleanliness and consistency. | Fred Drake | 2001-07-18 | 1 | -16/+20 |
| | |||||
* | Fix a mismatched parenthesis in the last patch. | Guido van Rossum | 2001-07-16 | 1 | -1/+1 |
| | |||||
* | [Bug #441527] Fixes for preprocessor support, contributed by Tarn | Andrew M. Kuchling | 2001-07-16 | 1 | -4/+5 |
| | | | | Weisner Burton | ||||
* | dummy checkin for testing, please ignore | unknown | 2001-07-04 | 1 | -1/+0 |
| | |||||
* | - _filename_to_abs() didn't cater for .. components in the pathname. Fixed. | Jack Jansen | 2001-06-19 | 1 | -1/+14 |
| | | | | | - compile() didn't return a (empty) list of objects. Fixed. - the various _fix_xxx_args() methods weren't called (are they new or did I overlook them?). Fixed. | ||||
* | Fixed -D emulation for symbols with a value, as specified with the ↵ | Just van Rossum | 2001-06-19 | 1 | -1/+1 |
| | | | | define_macros Extension argument. | ||||
* | Fix bug #418369: typo in bdist_rpm | Andrew M. Kuchling | 2001-05-21 | 1 | -1/+1 |
| | |||||
* | Fixed botched indent in _init_mac() code. (It may never be executed, | Guido van Rossum | 2001-05-17 | 1 | -1/+1 |
| | | | | | but it still can't have any syntax errors. Went a little too fast there, Jack? :-) | ||||
* | Made distutils understand the MacPython Carbon runtime model. Distutils will ↵ | Jack Jansen | 2001-05-17 | 2 | -0/+6 |
| | | | | build for the runtime model you are currently using for the interpreter. | ||||
* | Fix typo in docstring | Andrew M. Kuchling | 2001-04-23 | 1 | -1/+1 |
| | |||||
* | Bump version # for final release | Andrew M. Kuchling | 2001-04-23 | 1 | -1/+1 |
| | |||||
* | Pete Shinners discovered that zipfile.ZipFile() is called with mode | Guido van Rossum | 2001-04-14 | 1 | -1/+1 |
| | | | | | argument "wb", while the only valid modes are "r", "w" or "a". Fix this by changing the mode to "w". | ||||
* | Since bdist_wininst.py contains the installer executable, it had to be | Thomas Heller | 2001-04-10 | 1 | -262/+262 |
| | | | | rebuild. | ||||
* | Patch #413912 from Steve Majewski: Add .m to the list of extensions | Andrew M. Kuchling | 2001-04-05 | 1 | -1/+1 |
| | | | | in order to support Objective-C. | ||||
* | Back out the requirement to supply a version number | Andrew M. Kuchling | 2001-03-31 | 1 | -4/+0 |
| | |||||
* | Change rfc822_escape() to ensure there's a consistent amount of whitespace | Andrew M. Kuchling | 2001-03-23 | 1 | -3/+4 |
| | | | | | after each newline, instead of just blindly inserting a space at the start of each line. (Improvement suggested by Thomas Wouters) | ||||
* | Use the get_contact*() accessors instead of get_maintainer*() | Andrew M. Kuchling | 2001-03-22 | 1 | -2/+2 |
| | |||||
* | Remove redundant import | Andrew M. Kuchling | 2001-03-22 | 1 | -1/+1 |
| | |||||
* | Back out conversion to string methods; the Distutils is intended to work | Andrew M. Kuchling | 2001-03-22 | 4 | -13/+13 |
| | | | | with 1.5.2 | ||||
* | Call the write_pkg_info method | Andrew M. Kuchling | 2001-03-22 | 1 | -2/+2 |
| | |||||
* | Add 'platforms' and 'keywords' attributes to the DistributionMetadata class, | Andrew M. Kuchling | 2001-03-22 | 1 | -5/+70 |
| | | | | | | | | along with options to print them. Add a finalize_options() method to Distribution to do final processing on the platform and keyword attributes Add DistributionMetadata.write_pkg_info() method to write a PKG-INFO file into the release tree. | ||||
* | Patch #407434: add rfc822_escape utility function | Andrew M. Kuchling | 2001-03-22 | 1 | -0/+10 |
| | |||||
* | Fix bug #233253: the --define and --undef options didn't work, whether | Andrew M. Kuchling | 2001-03-17 | 1 | -0/+15 |
| | | | | | specified on the command-line or in setup.cfg. The option processing leaves them as strings, but they're supposed to be lists. | ||||
* | Bug #409403: Signal an error if the distribution's metadata has no version | Andrew M. Kuchling | 2001-03-17 | 1 | -0/+4 |
| | |||||
* | Distutils version number has been changed from 1.0.1 to 1.0.2pre | Thomas Heller | 2001-03-16 | 1 | -1/+1 |
| | | | | | | | before this get forgotten again. Should probably be set to 1.0.2 before final release of python 2.1 Does someone still release distutils separate from python? | ||||
* | The bdist_wininst.py command has been recreated after wininst.exe | Thomas Heller | 2001-03-16 | 1 | -272/+308 |
| | | | | | | | | | | | | has been changed to include an uninstaller. I forgot to mention in the uninstaller checkin that the logfile name (used for uninstalling) has been changed from <module>.log to <module>-wininst.log. This should prevent conflicts with a distutils logfile serving the same purpose. The short form of the --bdist-dir (-d) option has been removed because it caused conflicts with the short form of the --dist-dir option. | ||||
* | Make docstrings raw, since they contain literal backslashes. | Ka-Ping Yee | 2001-03-10 | 1 | -1/+1 |
| | |||||
* | When not copying a file because the output is up to date, make the message | Fred Drake | 2001-03-02 | 1 | -2/+2 |
| | | | | | slightly more brief, and more like the message that an extension will not be built because the built copy is up to date. | ||||
* | Leave #! lines featuring /usr/bin/env alone | Andrew M. Kuchling | 2001-02-28 | 1 | -2/+4 |
| | |||||
* | Placate tabnanny | Andrew M. Kuchling | 2001-02-28 | 1 | -1/+1 |
| | |||||
* | Bug #229280: remove '/' characters from the OS name (for BSD/OS :) ) | Andrew M. Kuchling | 2001-02-27 | 1 | -1/+6 |
| | |||||
* | Patch #403947: On Cygwin, use the Unix compiler class, and not | Andrew M. Kuchling | 2001-02-27 | 1 | -1/+4 |
| | | | | | | | | | | the Cygwin-specific compiler class. (According to Jason Tishler, cygwinccompiler needs some work to handle the differences in Cygwin- and MSVC-Python. Makefile and config files are currently ignored by cygwinccompiler, as it was written to support cygwin for extensions which are intended to be used with the standard MSVC built Python.) | ||||
* | Patch #404275: generate a reasonable platform string for AIX | Andrew M. Kuchling | 2001-02-27 | 1 | -0/+2 |
| | |||||
* | Enhancements to the bdist_wininst command: | Thomas Heller | 2001-02-19 | 1 | -265/+282 |
| | | | | | | | | | | | | | | | | | --bitmap command line option allows to use a different bitmap file instead of the build-in python powered logo. --title lets you specify the text to display on the background. The editbox in the first screen now longer is selected (highlighted), it had the WS_TABSTOP flag. This is the patch http://sourceforge.net/patch/?func=detailpatch&patch_id=103687&group_id=5470 with two changes: 1. No messagebox displayed when the compilation to .pyc or .pyo files failes, this will only confuse the user (and it will fail under certain cases, where sys.path contains garbage). 2. A debugging print statement was removed from bdist_wininst.py. | ||||
* | This patch makes the default compiler determination more flexible | Marc-André Lemburg | 2001-02-19 | 1 | -8/+40 |
| | | | | | | | | | | | | and also takes the sys.platform name into account. This helps on platforms where there are multiple possible compiler backends (the one with which Python itself was compiled is preferred over others in this case). The patch uses this new technique to enable using cygwin compiler per default for cygwin compiled Pythons. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Split the rpath argument into multiple paths, turning it into a list. | Andrew M. Kuchling | 2001-02-17 | 1 | -0/+3 |
| | | | | This partially fixes bug #128930. | ||||
* | Linking just got simpiler on AIX and BeOS (closes SF patch #103679). | Neil Schemenauer | 2001-02-16 | 1 | -25/+2 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 3 | -10/+10 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -3/+3 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
| | | | | (This one was trivial -- no actual string. references in it!) | ||||
* | Patch #103587: Fix typo that broke the install_data command; caught by | Andrew M. Kuchling | 2001-02-05 | 1 | -1/+1 |
| | | | | Uche Ogbuji | ||||
* | move "from stat import *" to module level | Jeremy Hylton | 2001-01-31 | 1 | -1/+1 |
| | |||||
* | Remove single "." components from pathnames, and return os.curdir if | Jack Jansen | 2001-01-28 | 1 | -0/+4 |
| | | | | the resulting path is empty. | ||||
* | Data pathnames were not converted from URL-style to local style. Fixed. | Jack Jansen | 2001-01-28 | 1 | -2/+4 |
| | |||||
* | Added an execution layer to be able to customize per-extension | Marc-André Lemburg | 2001-01-26 | 1 | -91/+92 |
| | | | | building. |