- 22 Mar, 2002 14 kayıt (commit)
-
-
Fred Drake yazdı
to crash. The user has reported the problem to Opera, but we still should generate something that passes for HTML.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Andrew M. Kuchling yazdı
.compile to be None, and set it to true if it is. Caught by Pearu Peterson. Bugfix candidate, if the previous change is accepted for release22-maint.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
available even if pymalloc is disabled since extension modules might use them.
-
Neil Schemenauer yazdı
and not pymalloc. Add the functions PyMalloc_New, PyMalloc_NewVar, and PyMalloc_Del that will use pymalloc if it's enabled. If pymalloc is not enabled then they use the standard malloc (PyMem_*).
-
Jack Jansen yazdı
don't cause import failure. Fixes 531398, 2.2.1 candidate.
-
Jack Jansen yazdı
- forgot to pass libraryflags and stdlibraryflags on to ppc/carbon project generation. First half of fix to 531398.
-
Tim Peters yazdı
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
Konrad was too kind. Not only did it raise an exception, the specific exception it raised made no sense. These are old bugs in complex_pow() and friends: 1. Raising 0 to a negative power isn't a range error, it's a domain error, so changed c_pow() to set errno to EDOM in that case instead of ERANGE. 2. Changed complex_pow() to: A. Used the Py_ADJUST_ERANGE2 macro to try to clear errno of a spurious ERANGE error due to underflow in the libm pow() called by c_pow(). B. Produced different exceptions depending on the errno value: i) For errno==EDOM, raise ZeroDivisionError instead of ValueError. This is for consistency with the non-complex cases 0.0**-2 and 0**-2 and 0L**-2. ii) For errno==ERANGE, raise OverflowError. Bugfix candidate.
-
Andrew M. Kuchling yazdı
* 'macdef' (macro definition) wasn't parsed correctly * account value not reset for a subsequent 'default' line * typo: 'whitepace' -> 'whitespace' Bugfix candidate.
-
- 21 Mar, 2002 12 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Bugfix candidate.
-
Andrew M. Kuchling yazdı
Remove unused no_compile flag Initialize the Boolean attribute .compile to 0 instead of None Bugfix candidate.
-
Andrew M. Kuchling yazdı
got this right? Bugfix candidate, unless Thomas notes a problem.
-
Andrew M. Kuchling yazdı
(Someone should check the other commands for this same error.) Bugfix candidate.
-
Jack Jansen yazdı
possibly converting from AppleSingle.
-
Jack Jansen yazdı
in MachoPython. As we don't have MacOS.HandleEvent() we drop these on the floor (with a print).
-
Jack Jansen yazdı
we have GUSI's void sync().
-
Jack Jansen yazdı
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
-
Walter Dörwald yazdı
This patch makes it possible to pass Warning instances as the first argument to warnings.warn. In this case the category argument will be ignored. The message text used will be str(warninginstance).
-
Martin v. Löwis yazdı
is "ignore". Fixes #529104.
-
- 20 Mar, 2002 7 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Add iterator support to pulldom.DOMEventStream New feature, so not a bugfix candidate (though it should be safe for inclusion)
-
Neal Norwitz yazdı
Can go into 2.2.x, but not necessary.
-
Tim Peters yazdı
Bugfix candidate? Don't know -- never bothered me, but it's minor either way.
-
Neal Norwitz yazdı
-
Neil Schemenauer yazdı
-
Tim Peters yazdı
Windows some modules are considered (by me, and I don't care what anyone else thinks about this <wink>) to be part of "the core" despite that they happen to be compiled into separate DLLs (the "to DLL or not to DLL?" question on Windows is nearly arbitrary). Making the pymalloc entry points available to them allows the Windows build to complete without incident when WITH_PYMALLOC is #define'd. Note that this isn't unprecedented. Other "private API" functions we export include _PySequence_IterSearch, _PyEval_SliceIndex, _PyCodec_Lookup, _Py_ZeroStruct, _Py_TrueStruct, _PyLong_New and _PyModule_Clear.
-
Andrew M. Kuchling yazdı
last Medusa release) Should be safe as a bugfix candidate, though it's not fixing a bug.
-
- 19 Mar, 2002 5 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
prototypes remain. Noted by Yakov Markovitch. Bugfix candidate.
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
for (reported by Keith Briggs). Wrap some very long lines.
-
Fred Drake yazdı
This was stated before, but a minor grammatical error made it difficult to be sure of the meaning. This closes SF bug #530143.
-
Tim Peters yazdı
-
- 18 Mar, 2002 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
FakeSocket class. Without it, the sendall() call got the method on the underlying socket object, and that messed up SSL. Does httplib use other methods of sockets that FakeSocket doesn't support? Someone should take a look... (I'll try to give it a once-over.) 2.2.1 bugfix candidate.
-
Andrew M. Kuchling yazdı
exists.
-