- 22 May, 2003 7 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
- 21 May, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
tp_free is NULL or PyObject_Del at the end. Because it's a base type it must call tp_free in its dealloc function, and because it's gc'able it must not call PyObject_Del. inherit_slots(): Don't inherit tp_free unless the type and its base agree about whether they're gc'able. If the type is gc'able and the base is not, and the base uses the default PyObject_Del for its tp_free, give the type PyObject_GC_Del for its tp_free (the appropriate default for a gc'able type). cPickle.c: The Pickler and Unpickler types claim to be base classes and gc'able, but their dealloc functions didn't call tp_free. Repaired that. Also call PyType_Ready() on these typeobjects, so that the correct (PyObject_GC_Del) default memory-freeing function gets plugged into these types' tp_free slots.
-
- 20 May, 2003 11 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
continuation lines in .po metadata caused a crash. Also, export more symbols from __all__.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
Line numbering of examples is not used elsewhere.
-
Martin v. Löwis yazdı
unnecessary redirection limit code which is already in FancyURLopener. Backport of 1.12.
-
Martin v. Löwis yazdı
Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations. Backport of 1.62, 1.63.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
- 18 May, 2003 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes bug reported in comment to #728322.
-
Martin v. Löwis yazdı
-
- 17 May, 2003 2 kayıt (commit)
-
-
Samuele Pedroni yazdı
-
Samuele Pedroni yazdı
-
- 16 May, 2003 2 kayıt (commit)
-
-
Samuele Pedroni yazdı
Backport fix for compile_command("",symbol="eval") raising syntax error about "pass". Now returns None.
-
Raymond Hettinger yazdı
-
- 12 May, 2003 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
index entry. Suggested to python-docs.
-
- 09 May, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
classmethod, staticmethod, cPickle.Pickler, cPickle.UNpickler
-
- 08 May, 2003 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 07 May, 2003 2 kayıt (commit)
-
-
Skip Montanaro yazdı
Fred
-
Skip Montanaro yazdı
but convenient in interactive sessions.
-
- 05 May, 2003 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
#730963.
-
Jeremy Hylton yazdı
-
- 03 May, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 30 Nis, 2003 2 kayıt (commit)
-
-
Tim Peters yazdı
Windows when n is too big to fit in a 32-bit int. This was a hole in 2.2's large file support on Windows, and turns out it's a bad hole at least for ZODB.
-
Fred Drake yazdı
documentation. Closes SF bug #723136.
-
- 29 Nis, 2003 3 kayıt (commit)
-
-
Fred Drake yazdı
- fix a typo and one markup nit - normalize whitespace
-
Fred Drake yazdı
-
Raymond Hettinger yazdı
A newbie found it difficult to translate the exampe into a case that used only short options or long options but not both. He tried to shorten the tuple search but forgot the trailing comma, The appropriate pattern is an equality check. Revised the example to point him in the right direction.
-
- 27 Nis, 2003 1 kayıt (commit)
-
-
Barry Warsaw yazdı
includes krb5.h. Copy the krb5_h stanza from Python 2.3's setup.py which seems to fix the problem.
-