- 22 Ara, 2000 5 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Original version written by Thomas Gellekum, reshaped into a separate module by AMK.
-
Andrew M. Kuchling yazdı
Remove several macros and #includes; py_curses.h contains them now.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
DECREF
-
- 21 Ara, 2000 5 kayıt (commit)
-
-
Fred Drake yazdı
CVS repository), provide the library version information.
-
Fred Drake yazdı
Wrapped some long lines.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
window methods
-
- 20 Ara, 2000 6 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
give minidom.py behaviour that complies with the DOM Level 1 REC, which says that when a node newChild is added to the tree, "if the newChild is already in the tree, it is first removed." pulldom.py is patched to use the public minidom interface instead of setting .parentNode itself. Possibly this reduces pulldom's efficiency; someone else will have to pronounce on that.
-
Andrew M. Kuchling yazdı
Simplifies ord()'s logic at the cost of some code duplication, removing a " `ord' might be used uninitialized in this function" warning
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
in one place.
-
Andrew M. Kuchling yazdı
DISTUTILS_DEBUG set"
-
- 19 Ara, 2000 24 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
incorrect % characters; characters outside the printable range are replaced with '?'
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Added hash() and compare() functions. Needed because multiple WinObj's can now refer to the same underlying WindowRef.
-
Jack Jansen yazdı
Blacklisted a few constants with funny definitions (and they're not important anyway: backward compatible error numbers).
-
Andrew M. Kuchling yazdı
using GNU libc's getline()
-
Guido van Rossum yazdı
warnings in this same module, to prevent getting a warning about importing regex (we *know* that it's obsolete :-).
-
Guido van Rossum yazdı
use of PyErr_Warn()! This module is a good guinea pig because it's been obsolete since 1.5.0 was released.
-
Guido van Rossum yazdı
so we can't use it. While I'm at it, got rid of string module use. (Found several new hard special cases for a hypothetical conversion tool: from string import join, find, rfind; and a local assignment "find=string.find".)
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
additional escape sequences defined for Unicode. This closes bug #117158.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
This closes bug #126034.
-
Guido van Rossum yazdı
doesn't work. Make it 0. (Although it really *should* be 0 or +1 -- the refcount is incremented when it is raised as an exception, but not otherwise.)
-
Guido van Rossum yazdı
Add an XXX comment at the beginning expressing disappointment over the confusing way refcount behavior of arguments is documented.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Get rid of BeOpen references.
-
Guido van Rossum yazdı
exceptions but always print a warning message.
-
Guido van Rossum yazdı
required to work around restrictions on the arguments of u.translate(): 1) don't pass the deletions argument if it's empty; 2) convert table to Unicode if s is Unicode. This fixes SF bug #124060.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
1) multi-char separator 2) multi-char separator that only occurs at last position 3) all of the above with mixed Unicode and 8-bit-string arguments
-