- 11 Apr, 2003 2 commits
-
-
Fred Drake authored
-
Neal Norwitz authored
The module would exist, but be empty if already imported. This change ensures we have gzip available.
-
- 10 Apr, 2003 6 commits
-
-
Neal Norwitz authored
* Doc - add doc for when functions were added * UserString * string object methods * string module functions 'chars' is used for the last parameter everywhere. These changes will be backported, since part of the changes have already been made, but they were inconsistent.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Guido van Rossum authored
return. Setting an exception can mess with the exception state, and continuing is definitely wrong (since type is dereferenced later on). Some code that calls this seems to be prepared for a NULL exception type, so let's be safe rather than sorry and simply assume there's nothing to normalize in this case.
-
Skip Montanaro authored
-
Raymond Hettinger authored
(contributed by Brett Cannon)
-
- 09 Apr, 2003 28 commits
-
-
Jeremy Hylton authored
Bugfix candidate.
-
Jeremy Hylton authored
Bug fix candidate.
-
Jeremy Hylton authored
-
Jason Tishler authored
The cygwinccompiler.get_versions() function only handles versions numbers of the form "x.y.z". The attached patch enhances get_versions() to handle "x.y" too (i.e., the ".z" is optional). This change causes the unnecessary "--entry _DllMain@12" link option to be suppressed for recent Cygwin and Mingw toolchains. Additionally, it directs recent Mingw toolchains to use gcc instead of dllwrap during linking.
-
Guido van Rossum authored
-
Guido van Rossum authored
MessageBeep().
-
Guido van Rossum authored
-
Guido van Rossum authored
Removed dead code.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
- CHECK_VALID() was checking the wrong value for a closed fd - fseek(&_iob[fileno], ...) doesn't work for fileno >= 20
-
Guido van Rossum authored
exceptionally large totals etc.
-
Guido van Rossum authored
recursively. - pdb has a new command, "debug", which lets you step through arbitrary code from the debugger's (pdb) prompt.
-
Fred Drake authored
-
Guido van Rossum authored
-
Guido van Rossum authored
of saying x->ob_type.
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
typecheck that guarantees it's a string, and BTW string subclasses could hide references.
-
Jason Tishler authored
Currently, the cygwinccompiler.py compiler handling in distutils is invoking the cygwin and mingw compilers with the -static option. Logically, this means that the linker should choose to link to static libraries instead of shared/dynamically linked libraries. Current win32 binutils expect import libraries to have a .dll.a suffix and static libraries to have .a suffix. If -static is passed, it will skip the .dll.a libraries. This is pain if one has a tree with both static and dynamic libraries using this naming convention, and wish to use the dynamic libraries. The -static option being passed in distutils is to get around a bug in old versions of binutils where it would get confused when it found the DLLs themselves. The decision to use static or shared libraries is site or package specific, and should be left to the setup script or to command line options.
-
Jack Jansen authored
-
Jack Jansen authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
-
Fred Drake authored
-
Anthony Baxter authored
-
Fred Drake authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
- 08 Apr, 2003 4 commits
-
-
Jeremy Hylton authored
If a class was defined inside a function, used a static or class method, and used super() inside the method body, it would be caught in an uncollectable cycle. (Simplified version: The static/class method object would point to a function object with a closure that referred to the class.) Bugfix candidate.
-
Just van Rossum authored
when DST began.
-
Skip Montanaro authored
-
Skip Montanaro authored
-