| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix for PR#111: when using the inplace option, give the new file the | Guido van Rossum | 1999-10-18 | 1 | -3/+15 |
|
|
* | os.fork raises AttributeError, not NameError, if fork() isn't | Fred Drake | 1999-10-18 | 1 | -1/+1 |
|
|
* | Based on comments from Paul Prescod: | Fred Drake | 1999-10-16 | 1 | -2/+11 |
|
|
* | Mainlining the string_methods branch. See branch revision log | Barry Warsaw | 1999-10-12 | 2 | -860/+550 |
|
|
* | update to use threading module instead of thread. | Jeremy Hylton | 1999-10-12 | 1 | -4/+4 |
|
|
* | fixed a typo in a docstring, and slightly expanded the module | Barry Warsaw | 1999-10-12 | 1 | -3/+2 |
|
|
* | Fix PR#31 -- zfill() mishandles empty string. | Guido van Rossum | 1999-10-11 | 1 | -1/+1 |
|
|
* | Jeremy writes: | Guido van Rossum | 1999-10-10 | 1 | -1/+2 |
|
|
* | Fix PR#3, submitted by Skip Montanaro: if no space appears after the | Guido van Rossum | 1999-10-06 | 1 | -1/+1 |
|
|
* | Added has_option(); fix bug in get() which botched interpolation if | Guido van Rossum | 1999-10-04 | 1 | -1/+16 |
|
|
* | Urmpfh! | Guido van Rossum | 1999-10-04 | 1 | -8/+43 |
|
|
* | ConfigParser.read(): Don't mask IOError exceptions. | Fred Drake | 1999-10-04 | 1 | -5/+3 |
|
|
* | Filter 'glob()' results so we only look at regular files. | Greg Ward | 1999-10-03 | 1 | -2/+2 |
|
|
* | Pass 'force' flag to 'new_compiler()'. | Greg Ward | 1999-10-03 | 1 | -2/+3 |
|
|
* | Don't import what we don't use. | Greg Ward | 1999-10-03 | 1 | -1/+1 |
|
|
* | Tweaked verbosity messages for byte-compilation. | Greg Ward | 1999-10-03 | 2 | -4/+4 |
|
|
* | Added 'force' and 'quiet' (negative alias for 'verbose') to the | Greg Ward | 1999-10-03 | 1 | -83/+84 |
|
|
* | Fixed 'mkpath()' to normalize the path right off the bat -- cleans up | Greg Ward | 1999-10-03 | 1 | -5/+7 |
|
|
* | Hacked to support the notion of "negative alias" options, to handle | Greg Ward | 1999-10-03 | 1 | -3/+32 |
|
|
* | Catch up with changes in 'gen_lib_options()': | Greg Ward | 1999-10-03 | 1 | -5/+30 |
|
|
* | Fixed order of link options: object files now precede library stuff. | Greg Ward | 1999-10-03 | 1 | -21/+58 |
|
|
* | Slight change to the meaning of the 'libraries' list: if a library name | Greg Ward | 1999-10-03 | 1 | -14/+37 |
|
|
* | Duncan Grisby noted a typo in _DummyThread. | Guido van Rossum | 1999-09-29 | 1 | -1/+1 |
|
|
* | Added 'list_only' option (and modified 'run()' to respect it). | Greg Ward | 1999-09-29 | 1 | -1/+9 |
|
|
* | Added all documentation. | Greg Ward | 1999-09-29 | 1 | -13/+106 |
|
|
* | New command to generate source distribution based on a manifest file. | Greg Ward | 1999-09-29 | 1 | -0/+590 |
|
|
* | Added 'package' option. | Greg Ward | 1999-09-29 | 1 | -7/+44 |
|
|
* | Renamed 'dir' option to be consistent with other commands. | Greg Ward | 1999-09-29 | 1 | -35/+66 |
|
|
* | Renamed many options to be consistent across commands. | Greg Ward | 1999-09-29 | 5 | -41/+35 |
|
|
* | Catch up with latest changes in CCompiler: | Greg Ward | 1999-09-29 | 1 | -58/+45 |
|
|
* | Catch up with latest changes in CCompiler: | Greg Ward | 1999-09-29 | 1 | -10/+22 |
|
|
* | Added 'extra_preargs' and 'extra_postargs' parameters to most methods, | Greg Ward | 1999-09-29 | 1 | -47/+94 |
|
|
* | More tweaks to 'mkpath()': | Greg Ward | 1999-09-29 | 1 | -0/+5 |
|
|
* | Added 'ready' flag and 'ensure_ready()' method to Command: together | Greg Ward | 1999-09-29 | 1 | -28/+53 |
|
|
* | Added docstring and RCS id (apparently some Windows tar extractors | Greg Ward | 1999-09-22 | 1 | -0/+11 |
|
|
* | Ditched the whole notion of "alias options": this meant dropping the | Greg Ward | 1999-09-21 | 1 | -39/+21 |
|
|
* | Added 'write_file()' function. | Greg Ward | 1999-09-21 | 1 | -1/+22 |
|
|
* | In 'link_shared_object()', try to be less sensitive to missing input files | Greg Ward | 1999-09-21 | 1 | -1/+11 |
|
|
* | Typecheck elements of 'macros' parameter in 'gen_preprocess_options(). | Greg Ward | 1999-09-21 | 1 | -0/+8 |
|
|
* | Added docstring, brought __all__ up-to-date. | Greg Ward | 1999-09-21 | 1 | -2/+19 |
|
|
* | Added 'install_path' option for giving non-packagized module | Greg Ward | 1999-09-21 | 1 | -12/+82 |
|
|
* | Only run build_py if we have pure Python modules, and build_ext if we | Greg Ward | 1999-09-21 | 1 | -5/+9 |
|
|
* | Some option changes: | Greg Ward | 1999-09-21 | 1 | -17/+30 |
|
|
* | Basically a complete rewrite to support dealing with modules in whole | Greg Ward | 1999-09-21 | 1 | -36/+197 |
|
|
* | Peter Haight discovered that this code uses a mutable default for cnf | Guido van Rossum | 1999-09-20 | 1 | -1/+3 |
|
|
* | After much hemming and hawing, we decided to roll back Fred's change. | Guido van Rossum | 1999-09-15 | 1 | -5/+5 |
|
|
* | Typo: the method called is do_SPAM, not handle_SPAM. | Guido van Rossum | 1999-09-15 | 1 | -1/+1 |
|
|
* | Put Sam Rushing's original RCS ID string back, without dollars around it. | Guido van Rossum | 1999-09-14 | 1 | -1/+1 |
|
|
* | Put Sam Rushing's original RCS ID string back, without dollars around it. | Guido van Rossum | 1999-09-14 | 1 | -1/+1 |
|
|
* | Changed selection of installation directories (in 'set_final_options()') | Greg Ward | 1999-09-13 | 2 | -12/+28 |
|
|