- 10 Nis, 2003 3 kayıt (commit)
-
-
Guido van Rossum yazdı
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 yazdı
-
Raymond Hettinger yazdı
(contributed by Brett Cannon)
-
- 09 Nis, 2003 28 kayıt (commit)
-
-
Jeremy Hylton yazdı
Bugfix candidate.
-
Jeremy Hylton yazdı
Bug fix candidate.
-
Jeremy Hylton yazdı
-
Jason Tishler yazdı
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 yazdı
-
Guido van Rossum yazdı
MessageBeep().
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Removed dead code.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
- CHECK_VALID() was checking the wrong value for a closed fd - fseek(&_iob[fileno], ...) doesn't work for fileno >= 20
-
Guido van Rossum yazdı
exceptionally large totals etc.
-
Guido van Rossum yazdı
recursively. - pdb has a new command, "debug", which lets you step through arbitrary code from the debugger's (pdb) prompt.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
of saying x->ob_type.
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
typecheck that guarantees it's a string, and BTW string subclasses could hide references.
-
Jason Tishler yazdı
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 yazdı
-
Jack Jansen yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Anthony Baxter yazdı
-
Fred Drake yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
- 08 Nis, 2003 9 kayıt (commit)
-
-
Jeremy Hylton yazdı
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 yazdı
when DST began.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Tim Peters yazdı
These never failed in 2.3, and the tests confirm it. They still blow up in the 2.2 branch, despite that all the gc-vs-__del__ fixes from 2.3 have been backported (and this is expected -- 2.2 needs more work than 2.3 needed).
-
Skip Montanaro yazdı
-
Tim Peters yazdı
-
Fred Drake yazdı
Based on a suggestion from a reader.
-
Fred Drake yazdı
-