- 06 Kas, 2001 10 kayıt (commit)
-
-
Fred Drake yazdı
referenced, WeakKeyDictionary.has_key() should return 0 instead of raising TypeError.
-
Fred Drake yazdı
referencable (weakref.ref() raises TypeError), return 0 instead of propogating the TypeError. This closes SF bug #478536; bugfix candidate.
-
Jack Jansen yazdı
generally did things to get it working.
-
Jack Jansen yazdı
support them.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Enabled WITH_LONG_LONG. No reason it was disabled, it has been supported by the Metrowerks compiler for quite some time.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
HFS+ API contributed by Nitin Ganatra. This checkin is identical to what he sent me, except for the namechange (fmgr->hfsplus).
-
- 05 Kas, 2001 25 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
in the presence of empty-string arguments.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
the Web page)
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
ntpath.join('a', '') was producing 'a' instead of 'a\\' as in 2.1. Impossible to guess what was ever *intended*, but since split('a\\') produces ('a', ''), I think it's best if join('a', '') gives 'a\\' back.
-
Barry Warsaw yazdı
#477864.
-
Barry Warsaw yazdı
my own doing, some originally written by Matthew Dixon Cowles.
-
Fred Drake yazdı
does not share data with the original.
-
Fred Drake yazdı
original by replacing self.data temporarily, then using the update() method on the new mapping object to populate it. This closes SF bug #476616.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Universal Headers 3.4
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Carbon Event Manager module donated by Donovan Preston. Checked in as I received them (except for namechange), these will not work as-is, that'll be fixed in a later checkin.
-
Jack Jansen yazdı
Make the CoreFoundation object _New and _Convert routines available to other modules. Idea by Donovan Preston, implementaion by me.
-
Jack Jansen yazdı
removed some outdated code.
-
Just van Rossum yazdı
-
Just van Rossum yazdı
which makes it work under Carbon. Next stop: the object browser.
-
Just van Rossum yazdı
- CreateCustomList(): write LDEF's in Python! (carbon + classic) - list.LGetCellDataLocation() (Jack: what's with this _WIN32/pywintoolbox.h stuff?)
-
Tim Peters yazdı
-
Tim Peters yazdı
Changes enabling Python to compile under OS/2 Visual Age C++.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 04 Kas, 2001 5 kayıt (commit)
-
-
Tim Peters yazdı
run in an infinite loop no longer grows. Thanks to Neal Norwitz for determining that test leaked!
-
Tim Peters yazdı
PyNode_CompileSymtable: if symtable_init() fails, free the memory allocated for the PyFutureFeatures struct.
-
Steven M. Gava yazdı
-
Tim Peters yazdı
helping for types that defined tp_richcmp but not tp_compare, although that's when it's most valuable, and strings moved into that category since the fast path was first introduced. Now it helps for same-type non-Instance objects that define rich or 3-way compares. For all the edits here, the rest just amounts to moving the fast path from do_richcmp into PyObject_RichCompare, saving a layer of function call (measurable on my box!). This loses when NESTING_LIMIT is exceeded, but I don't care about that (fast-paths are for normal cases, not pathologies). Also added a tasteful <wink> label to get out of PyObject_RichCompare, as the if/else nesting in this routine was getting incomprehensible.
-
Steven M. Gava yazdı
-