- 21 Şub, 2003 14 kayıt (commit)
-
-
Tim Peters yazdı
test_nonrecursive_deep(): Reduced nesting depth to 60. Not a bugfix candidate. 2.3 increased the number of stack frames needed to pickle a list (in order to get implement the "list batching" unpickling memory optimization new in 2.3).
-
Michael W. Hudson yazdı
seconds making the doc for get_completer marginally less minimal :)
-
Neal Norwitz yazdı
-
Walter Dörwald yazdı
is required for the chosen internal encoding in the init function, as this seems to have a better chance of working under Irix and Solaris. Also change the test character from '\x01' to '0'. This might fix SF bug #690309.
-
Tim Peters yazdı
on the boxes I use.
-
Jack Jansen yazdı
is a window manager and we can connect to it, i.e. if it is safe to try and put up windows. As a side effect the first call will make the current process frontmost.
-
Walter Dörwald yazdı
between str, unicode, UserString and the string module as possible. This increases code coverage in stringobject.c from 83% to 86% and should help keep the string classes in sync in the future. From SF patch #662807
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
time.sleep(1) sometimes delays for fractionally less than a second resulting in too short of an interval for C's time.time() function to create a distinct seed.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 20 Şub, 2003 10 kayıt (commit)
-
-
Thomas Heller yazdı
the PyInt_AsLong function, and this returns a long, the value is first retrieved with PyLong_AsLong, but afterwards overwritten by a call to PyInt_AS_LONG. Fixes SF #690253.
-
Guido van Rossum yazdı
-
Michael W. Hudson yazdı
called something else!). I can't imagine removing the prototype is going to hurt, but put it back if *you* can.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Use level=3 (i.e. log.WARN) for the warnings about failed imports. (Hmm... Why is that code in an "if 1: ..."? What's the else branch for?)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
levels. (Previously, -vvv would be the same as -q!)
-
Guido van Rossum yazdı
Added an extra blank line before "What's New in Python 2.2 final?".
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 19 Şub, 2003 16 kayıt (commit)
-
-
David Goodger yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Rather than trying to second-guess the various error returns of a second connect(), use select() to determine whether the socket becomes writable (which means connected).
-
Walter Dörwald yazdı
-
Fred Drake yazdı
Gerrit Holl in email to python-docs.)
-
Guido van Rossum yazdı
instead of a plain PyObject *. (SF patch #686601 by Ben Laurie.)
-
Guido van Rossum yazdı
turned into an absolute pathname, unless it is the empty string. (SF patch #664376, by Skip Montanaro.)
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
[Patch #684398] Rename verbose argument to show-response; don't conditionalize the get_classifiers() call
-
Andrew M. Kuchling yazdı
-
Andrew MacIntyre yazdı
prior to NT. EMX has a number of Posix emulation routines, including geteuid() but lacks chown(), so silently skip trying to actually set a file ownership when extracting a file from a tar archive.
-
Andrew MacIntyre yazdı
-
Jack Jansen yazdı
by the user), as this will cause the least surprises with scripts brought over from other unixen. Suggested by Kevin Altis.
-
Mark Hammond yazdı
-
Guido van Rossum yazdı
Don't access tp_descr_{get,set} of a descriptor without checking the flag bits of the descriptor's type. While we know that the main type (the type of the object whose attribute is being accessed) has all the right flag bits (or else PyObject_Generic{Get,Set}Attr wouldn't be called), we don't know that for its class attributes! Will backport to 2.2.
-