- 29 May, 2002 3 kayıt (commit)
-
-
Marc-André Lemburg yazdı
-
Michael W. Hudson yazdı
[ 558914 ] Build md5.c fails on Cray T3E I've also deleted a comment that I didn't understand. Feel free to put it back if it makes/made sense to you.
-
Neal Norwitz yazdı
-
- 28 May, 2002 4 kayıt (commit)
-
-
Guido van Rossum yazdı
Using Unicode-aware methods may still die with a NameError on unicode. Maybe there's a more elegant solution but I doubt anybody cares.)
-
Guido van Rossum yazdı
literals must not contain \u, \U or \N escapes. (XXX Should they also not contain non-ASCII characters?)
-
Jack Jansen yazdı
in there, and convert it to "rb" (or "r" for non-universal-newline builds) before passing it to fopen(). Fixes #561326.
-
Christian Tismer yazdı
(or how do I "mark" something to be a candidate?) fixed an old buglet that caused bdb to be unable to continue in the botframe, after a breakpoint was set. the key idea is not to set botframe to the bottom level frame, but its f_back, which actually might be None. Additional changes: migrated old exception trick to use sys._getframe(), which exists both in 2.1 and 2.2 . Note: I believe Mark Hammond needs to look over his code now. F5 correctly starts up in the debugger, but later on doesn't stop at a given breakpoint any longer. kind regards - chris
-
- 27 May, 2002 5 kayıt (commit)
-
-
Steven M. Gava yazdı
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
[ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
-
Michael W. Hudson yazdı
-
Guido van Rossum yazdı
allow subclassing.
-
- 26 May, 2002 1 kayıt (commit)
-
-
Chui Tey yazdı
-
- 25 May, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
target.
-
- 24 May, 2002 8 kayıt (commit)
-
-
Guido van Rossum yazdı
whose tp_mro hasn't been initialized, it would dump core. Fix this by checking for NULL and calling PyType_Ready(). Will fix this in 2.2.1 too.
-
Andrew M. Kuchling yazdı
Other minor rewrites
-
Guido van Rossum yazdı
for 'str' and 'unicode', and can be used instead of types.StringTypes, e.g. to test whether something is "a string": isinstance(x, string) is True for Unicode and 8-bit strings. This is an abstract base class and cannot be instantiated directly.
-
Guido van Rossum yazdı
different free or alloc slot.
-
Guido van Rossum yazdı
-
Andrew M. Kuchling yazdı
Remove 1.5.2 reference: who cares?
-
Guido van Rossum yazdı
The old syntax suggested that a trailing comma was OK inside backticks, but in fact (due to ideosyncrasies of pgen) it was not. Fix the grammar to avoid the ambiguity. Fred: you may want to update the refman.
-
Guido van Rossum yazdı
are disabled.
-
- 23 May, 2002 17 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Jack Jansen yazdı
Should fix #492465.
-
Jack Jansen yazdı
and maintain. Fixes #557482.
-
Fred Drake yazdı
-
Tim Peters yazdı
"power" was formally ambiguous. Here's his fix.
-
Raymond Hettinger yazdı
-
Barry Warsaw yazdı
string with text in column zero. Skip that stuff when looking for the "first statement following the statement containing point".
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Fred Drake yazdı
while modifying these files. Minor style changes to make the use of "my" with arrays more consistent.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Barry Warsaw yazdı
fixed (re: SF bug #555035). Include a unittest.
-
Skip Montanaro yazdı
closes patch #536278.
-
- 22 May, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
A MemoryError is now raised when the list cannot be created. There is a test, but as the comment says, it really only works for 32 bit systems. I don't know how to improve the test for other systems (ie, 64 bit or systems where the data size != addressable size, e.g. 64 bit data, but 48 bit addressable memory)
-