- 05 Nis, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
This patch fixes the mmap module on Windows 9x. Also updates the mmap test to remove the test file.
-
- 04 Nis, 2000 6 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
recognize the '7bit' and '8bit' encodings, to simplify use.
-
Guido van Rossum yazdı
This patch solves 2 problems of the os module. 1) Bug ID #50 (case-mismatch wiht "environ.get(..,..)" and "del environ[..]") 2) os.environ.update (dict) doesn't propagate changes to the 'real' environment (i.e doesn't call putenv) This patches also has minor changes specific for 1.6a The string module isn't used anymore, instead the strings own methods are used.
-
Guido van Rossum yazdı
Unix From lines, change the UnixMailbox class so that _search_start() positions the file *before* the Unix From line instead of after it; change _search_end() to skip one line before looking for the next From line. The rfc822.Message class automatically recognizes these Unix From lines and squirrels them away in the 'unixfrom' instance variable.
-
Greg Ward yazdı
- file_util.py: operations on single files - dir_util.py: operations on whole directories or directory trees - dep_util.py: simple timestamp-based dependency analysis - archive_util.py: creation of archive (tar, zip, ...) files The functions left in util.py are miscellany that don't fit in any of the new files.
-
Greg Ward yazdı
the Command class from core.py to cmd.py. No other code needs changing though; distutils.core still provides the Command and Distribution classes, although indirectly now.
-
- 03 Nis, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 02 Nis, 2000 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
untabifies the files. No actual code changes were made.
-
Andrew M. Kuchling yazdı
-
- 01 Nis, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 31 Mar, 2000 29 kayıt (commit)
-
-
Guido van Rossum yazdı
directory, and so that people have a clue as to why it exists.
-
Greg Ward yazdı
functions, but with different names.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
mechanism is enhanced to be more informative.
-
Guido van Rossum yazdı
-
Greg Ward yazdı
HKEY_* and Reg* names once, rather than having near-duplicate code in the two import attempts. Also dropped the leading underscore on all the imported symbols, as it's not appropriate (they're not local to this module).
-
Greg Ward yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
NOTE: THIS IS VERY ROUGH ALPHA CODE!
-
Greg Ward yazdı
option to disable this (by default, it's false and we clean up).
-
Greg Ward yazdı
we still have to *run* the sub-command that creates a built distribution.
-
Greg Ward yazdı
-
Greg Ward yazdı
multiple built distributions in one run -- it seemed a bit dodgy and I'd rather remove it than try to beat it into submission right now.
-
Greg Ward yazdı
Added 'ztar', 'tar' to 'format_command' dictionary.
-
Greg Ward yazdı
eg. sunos5, linux2, irix5.
-
Greg Ward yazdı
-
Greg Ward yazdı
now done in the 'build_ext' command.
-
Greg Ward yazdı
* build to "Debug" or "Release" temp directory * put linker turds (.lib and .exp files) in the build temp directory * tack on "_d" to extensions built with debugging * added 'get_ext_libname()' help in putting linker turds to temp dir Also, moved the code that simplifies None to empty list for a bunch of options to 'finalize_options()' instead of 'run()'.
-
Greg Ward yazdı
specific to building Python extensions.
-
Greg Ward yazdı
-
Guido van Rossum yazdı
installs Tcl/Tk.
-
Greg Ward yazdı
Simplified 'Command.get_peer_option()' a tad -- just call 'find_peer()' to get the peer command object. Updated 'Command.copy_file()' to take a 'link' parameter, just like 'util.copy_file()' does now. Added 'Command.make_archive()' to wrap 'util.make_archive()'.
-
Greg Ward yazdı
Changes to 'copy_file()': * added support for making hard links and symlinks * noted that it silently clobbers existing files when copying, but blows up if destination exists when linking -- hmmm... * error message tweak Added 'base_name' parameter to 'make_tarball()' and 'make_zipfile()'. Added 'make_archive()' -- wrapper around 'make_tarball()' or 'make_zipfile()' to take care of the archive "root directory".
-
Greg Ward yazdı
-
Greg Ward yazdı
the command that actually creates "dumb" binary distributions, ie. tarballs and zip files that you just unpack under <prefix> or <exec-prefix>. Very limited, but it's a start.
-
Greg Ward yazdı
Initial revision is pretty limited; it only knows how to generate "dumb" binary distributions, i.e. a tarball on Unix and a zip file on Windows. Also, due to limitations in the installation code, it only knows how to distribute Python library code. But hey, it's a start.
-
Greg Ward yazdı
-
Greg Ward yazdı
Added 'get_inputs()' (which is strikingly similar to 'get_outputs()' - sigh). Cosmetic tweaks.
-