- 01 Jul, 2000 40 commits
-
-
Fred Drake authored
Usage error noted by Grant Griffin <grant.griffin@iowegian.com>.
-
Fred Drake authored
Usage error noted by Grant Griffin <grant.griffin@iowegian.com>.
-
Andrew M. Kuchling authored
-
Paul Prescod authored
-
Just van Rossum authored
-
Fredrik Lundh authored
to 8-bit strings, using the default encoding.
-
Just van Rossum authored
-
Just van Rossum authored
-
Paul Prescod authored
-
Andrew M. Kuchling authored
- distutils: Windows installers are already working - string methods: .join() seems to be the concensus, so it should probably be docommented - filecmp.py supersedes cmp, cmpcache and dircmp - winreg is completely new: _winreg is an adaptation of what used to be in win32api, and winreg is a Python implementation which adds OO syntax. Perhaps you know that, but the text is misleading.
-
Guido van Rossum authored
Similar to an old bug in ntpath.py.
-
Fred Drake authored
splittype(): Always lower-case the URL scheme; these are supposed to be normalized according to RFC 1738 anyway.
-
Fred Drake authored
getatime() returned the mtime instead of the atime. Similar to an old bug in posixpath.py.
-
Fred Drake authored
Correct typo that caused a well-formedness failure.
-
Paul Prescod authored
-
Barry Warsaw authored
-
Guido van Rossum authored
-
Guido van Rossum authored
They should all be binary (cvs admin -kv has now been applied).
-
Guido van Rossum authored
-
Mark Hammond authored
-
Fred Drake authored
the bind(), connect(), and connect_ex() methods must be a single parameter. Originally part of 1.98, reverted in 1.100.
-
Guido van Rossum authored
-
Guido van Rossum authored
changes to the bsddb source.
-
Mark Hammond authored
-
Mark Hammond authored
-
Mark Hammond authored
Update all projects so Debug builds use "/Zi" instead of "/ZI", which means everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do!
-
Tim Peters authored
-
Fred Drake authored
-
Fred Drake authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Include limits.h if we have it.
-
Guido van Rossum authored
If we have stat.h include it if we don't have sys/stat.h
-
Guido van Rossum authored
Include stat.h if needed; different Mac filename compare
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
CHAR_MAX, use hardcoded -128 and 127. This may seem strange, unless you realize that we're talking about signed bytes here! Bytes are always 8 bits and 2's complement. CHAR_MIN and CHAR_MAX are properties of the char data type, which is guaranteed to hold at least 8 bits anyway. Otherwise you'd get failing tests on platforms where unsigned char is the default (e.g. AIX). Thanks, Vladimir Marangozov, for finding this nit!
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
-