- 17 Haz, 2000 2 kayıt (commit)
-
-
Greg Ward yazdı
'remove_tree()' can cooperate with 'mkpath()' in the maintenance of the PATH_CREATED cache: specifically, if a directory is created with 'mkpath()', later removed with 'remove_tree()', and 'mkpath()' is again requested to create it, then it would erroneously think the directory already existed, because it was in the PATH_CREATED cache. The patch (slightly tweaked by me) fixes that.
-
Greg Ward yazdı
-
- 16 Haz, 2000 4 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Added a bit more documentation in the chapter on building extension types, including Py_FindMethod() documentation. Several minor consistency nits were fixed.
-
Marc-André Lemburg yazdı
The error message refers to "append", yet the operation in question is "concat".
-
- 15 Haz, 2000 4 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
Carl Feynman <carlf@abinitio.com>.
-
Fred Drake yazdı
This patch corrects a little glitch and two outright errors. (Including one reported earlier by Thomas Wouters.)
-
Fred Drake yazdı
The following patch adds "sq_contains" support to rangeobject, and enables the already-written support for sq_contains in listobject and tupleobject. The rangeobject "contains" code should be a bit more efficient than the current default "in" implementation ;-) It might not get used much, but it's not that much to add. listobject.c and tupleobject.c already had code for sq_contains, and the proper struct member was set, but the PyType structure was not extended to include tp_flags, so the object-specific code was not getting called (Go ahead, test it ;-). I also did this for the immutable_list_type in listobject.c, eventhough it is probably never used. Symmetry and all that.
-
- 14 Haz, 2000 3 kayıt (commit)
-
-
Marc-André Lemburg yazdı
Added code so that .isXXX() testing returns 0 for emtpy strings.
-
Marc-André Lemburg yazdı
Removed a test which can fail when the default locale setting uses a Latin-1 encoding. The test case is not applicable anymore.
-
Jack Jansen yazdı
-
- 13 Haz, 2000 6 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
Documentation for the unicodedata module (massaged by Fred for minor consistency issues).
-
Fred Drake yazdı
Thanks to Hubert Hoegl <hubert.hoegl@dlr.de> for finding this bug.
-
Jack Jansen yazdı
-
Marc-André Lemburg yazdı
Fixed some tests to not cause the script to fail, but rather output a warning (which then is caught by regrtest.py as wrong output). This is needed to make test_unicode.py run through on JPython. Thanks to Finn Bock.
-
Marc-André Lemburg yazdı
Removed import of string module -- use string methods directly. Thanks to Finn Bock.
-
- 11 Haz, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 10 Haz, 2000 10 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
(The SourceForge admins have been asked to rename the ,v file.)
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Add IDLE section from MZ
-
Marc-André Lemburg yazdı
Fixed a typo and removed a debug printf(). Thanks to Finn Bock for finding these.
-
Fred Drake yazdı
test. Someone with more Linux audio knowledge should at least take a brief look at it.
-
Andrew M. Kuchling yazdı
Add request for feedback.
-
Andrew M. Kuchling yazdı
Bumped version number.
-
Andrew M. Kuchling yazdı
-
- 09 Haz, 2000 5 kayıt (commit)
-
-
Jeremy Hylton yazdı
reported by Mark Hammon
-
Andrew M. Kuchling yazdı
latest public snapshot.""
-
Andrew M. Kuchling yazdı
-
Mark Hammond yazdı
-
Andrew M. Kuchling yazdı
-
- 08 Haz, 2000 5 kayıt (commit)
-
-
Marc-André Lemburg yazdı
Fixed %c formatting to check for one character arguments. Thanks to Finn Bock for finding this bug. Added a fix for bug PR#348 which originated from not resetting the globals correctly in _PyUnicode_Fini().
-
Marc-André Lemburg yazdı
Updated to version 1.5. Includes typo fixes by Andrew Kuchling and a new section on the default encoding.
-
Marc-André Lemburg yazdı
Updated to the fix in %c formatting: it now always checks for a one character argument.
-
Marc-André Lemburg yazdı
Added emulations of the C APIs in _locale to be used when the _locale module is not enabled. They return the correct values assuming the 'C' locale.
-
Greg Ward yazdı
passed None.
-