- 22 Mar, 2002 23 kayıt (commit)
-
-
Neil Schemenauer yazdı
by a future statement.
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Skip Montanaro yazdı
Michael: use this version as the bugfix candidate...
-
Skip Montanaro yazdı
is always 0. This closes bug #533234.
-
Walter Dörwald yazdı
and remove the unneccessary "import stat" statement.
-
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 5 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ı
-