- 22 Mar, 2002 11 commits
-
-
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 12 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
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Walter Dörwald authored
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 authored
is "ignore". Fixes #529104.
-
- 20 Mar, 2002 7 commits
-
-
Andrew M. Kuchling authored
Add iterator support to pulldom.DOMEventStream New feature, so not a bugfix candidate (though it should be safe for inclusion)
-
Neal Norwitz authored
Can go into 2.2.x, but not necessary.
-
Tim Peters authored
Bugfix candidate? Don't know -- never bothered me, but it's minor either way.
-
Neal Norwitz authored
-
Neil Schemenauer authored
-
Tim Peters authored
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 authored
last Medusa release) Should be safe as a bugfix candidate, though it's not fixing a bug.
-
- 19 Mar, 2002 5 commits
-
-
Andrew M. Kuchling authored
prototypes remain. Noted by Yakov Markovitch. Bugfix candidate.
-
Martin v. Löwis authored
-
Fred Drake authored
for (reported by Keith Briggs). Wrap some very long lines.
-
Fred Drake authored
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 authored
-
- 18 Mar, 2002 5 commits
-
-
Andrew M. Kuchling authored
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 authored
exists.
-
Fredrik Lundh authored
the time...)
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-