- 23 Mar, 2002 7 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
converted to use unittest
-
Skip Montanaro authored
-
Tim Peters authored
One more time on this turkey, but duller instead of cleverer. Curious: The docs say __getslice__ has been deprecated since 2.0, but list.__getitem__ still doesn't work if you pass it a slice. This makes it a lot clearer to emulate a list by *being* a list <wink>. Bugfix candidate. Michael, just pile this patch on top of the others that went by -- no need to try to pick these apart.
-
Neil Schemenauer authored
-
Tim Peters authored
-
Tim Peters authored
Also move all _PyMalloc_XXX entry points into obmalloc.c. The Windows build works fine. The Unix build is changed here (Makefile.pre.in), but not tested. No other platform's build process has been fiddled.
-
- 22 Mar, 2002 25 commits
-
-
Neil Schemenauer authored
statement.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
by a future statement.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Skip Montanaro authored
Michael: use this version as the bugfix candidate...
-
Skip Montanaro authored
is always 0. This closes bug #533234.
-
Walter Dörwald authored
and remove the unneccessary "import stat" statement.
-
Fred Drake authored
to crash. The user has reported the problem to Opera, but we still should generate something that passes for HTML.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Andrew M. Kuchling authored
.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 authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
available even if pymalloc is disabled since extension modules might use them.
-
Neil Schemenauer authored
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 authored
don't cause import failure. Fixes 531398, 2.2.1 candidate.
-
Jack Jansen authored
- forgot to pass libraryflags and stdlibraryflags on to ppc/carbon project generation. First half of fix to 531398.
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
Tim Peters authored
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 authored
* 'macdef' (macro definition) wasn't parsed correctly * account value not reset for a subsequent 'default' line * typo: 'whitepace' -> 'whitespace' Bugfix candidate.
-
- 21 Mar, 2002 8 commits
-
-
Andrew M. Kuchling authored
Bugfix candidate.
-
Andrew M. Kuchling authored
Remove unused no_compile flag Initialize the Boolean attribute .compile to 0 instead of None Bugfix candidate.
-
Andrew M. Kuchling authored
got this right? Bugfix candidate, unless Thomas notes a problem.
-
Andrew M. Kuchling authored
(Someone should check the other commands for this same error.) Bugfix candidate.
-
Jack Jansen authored
possibly converting from AppleSingle.
-
Jack Jansen authored
in MachoPython. As we don't have MacOS.HandleEvent() we drop these on the floor (with a print).
-
Jack Jansen authored
we have GUSI's void sync().
-
Jack Jansen authored
-