- 31 Mar, 2000 21 commits
-
-
Greg Ward authored
-
Greg Ward authored
Added 'get_inputs()' (which is strikingly similar to 'get_outputs()' - sigh). Cosmetic tweaks.
-
Greg Ward authored
provided by Distribution. Cosmetic and error message tweaks. Simplified 'make_release_tree()': * extracted 'distutils.util.create_tree()' * don't have to do hard-linking ourselves -- it's now handled by 'distutils.util.copy_file()' (although the detection of whether hard linking is available still needs to be factored out) Removed 'make_tarball()' and 'make_zipfile()' entirely -- their role is now amply filled by 'distutils.util.make_archive()'. Simplified 'make_distribution()': * use Distribution's new 'get_full_name()' method * use 'make_archive()' instead of if/elif/.../else on the archive format
-
Guido van Rossum authored
Some refinements on the Wise file, also adding mmap.pyd.
-
Guido van Rossum authored
in scope on systems where mode_t isn't the same size as int...
-
Jeremy Hylton authored
override) add missing DECREFs in error handling code of CALL_FUNCTION
-
Guido van Rossum authored
was a superfluous check for the platform.
-
Guido van Rossum authored
-
Guido van Rossum authored
Reformatted for 8-space tabs and fitted into 80-char lines by GvR. Mark writes: * the Win32 version now accepts the same args as the Unix version. The win32 specific "tag" param is now optional. The end result is that the exact same test suite runs on Windows (definately a worthy goal!). * I changed the error object. All occurences of the error, except for 1, corresponds to an underlying OS error. This one was changed to a ValueError (a better error for that condition), and the module error object is now simply EnvironmentError. All win32 error routines now call the new Windows specific error handler.
-
Guido van Rossum authored
-
Guido van Rossum authored
can't remember who. :-) Changes: - Support for Windows NT (different locking behavior) - Added a logging mechanism
-
Guido van Rossum authored
can't remember who. :-) Changes: - Owner name+email made generic instead of GvR - Support for Windows NT (running from a .bat file) - DOcument <HTML>...</HTML> tags
-
Guido van Rossum authored
tab-setting magic much smarter, more correct, and more easily extensible.
-
Guido van Rossum authored
changed from 8.0 to 8.1 and I see no big reason to use objects in 8.0. At least now it works again with all versions from 8.0 - 8.3.
-
Guido van Rossum authored
-
Guido van Rossum authored
(1) In opendir(), don't call the lock-release macros; we're manipulating list objects and that shouldn't be done in unlocked state. (2) Don't use posix_strint() for chmod() -- the mode_t arg might be a 64 bit int (reported by Nick Maclaren).
-
Guido van Rossum authored
them out of the changelogs :-(
-
Guido van Rossum authored
"innermost last". The latter was mysterious to newbies.
-
Guido van Rossum authored
(Mostly.)
-
Guido van Rossum authored
-
Jeremy Hylton authored
add test cases for non-UserList class, tuple, & string
-
- 30 Mar, 2000 19 commits
-
-
Jeremy Hylton authored
If a non-tuple sequence is passed as the *arg, convert it to a tuple before checking its length. If named keyword arguments are used in combination with **kwargs, make a copy of kwargs before inserting the new keys.
-
Guido van Rossum authored
-
Guido van Rossum authored
Careful, this has had zero testing (except by Peter)!
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Jeremy Hylton authored
dictionary that contains the same key/value pairs as p.
-
Guido van Rossum authored
-
Guido van Rossum authored
Building on Windows NT. Removed Tcl installation. Commented out Doc installation.
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
Win32 test case.
-
Andrew M. Kuchling authored
Win32 test case
-
Andrew M. Kuchling authored
(Needs testing on Win32.)
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Greg Ward authored
-
Guido van Rossum authored
light of three different situations: (1) running from build; (2) running from installed; (3) running without being able to find an installation (e.g. as a COM object). The system paths in the repository are only used for (3); the path deduced from the installation location are used otherwise. PYTHONHOME overrides in all cases. Read the comments for more details.
-
Guido van Rossum authored
name is much longer, which fouls up dis's formatting slightly; this is a "fix" for that.
-