- 06 Nov, 2001 10 commits
-
-
Fred Drake authored
referenced, WeakKeyDictionary.has_key() should return 0 instead of raising TypeError.
-
Fred Drake authored
referencable (weakref.ref() raises TypeError), return 0 instead of propogating the TypeError. This closes SF bug #478536; bugfix candidate.
-
Jack Jansen authored
generally did things to get it working.
-
Jack Jansen authored
support them.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
Enabled WITH_LONG_LONG. No reason it was disabled, it has been supported by the Metrowerks compiler for quite some time.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
HFS+ API contributed by Nitin Ganatra. This checkin is identical to what he sent me, except for the namechange (fmgr->hfsplus).
-
- 05 Nov, 2001 25 commits
-
-
Andrew M. Kuchling authored
-
Tim Peters authored
in the presence of empty-string arguments.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
the Web page)
-
Andrew M. Kuchling authored
-
Tim Peters authored
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 authored
#477864.
-
Barry Warsaw authored
my own doing, some originally written by Matthew Dixon Cowles.
-
Fred Drake authored
does not share data with the original.
-
Fred Drake authored
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 authored
-
Jack Jansen authored
Universal Headers 3.4
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
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 authored
Make the CoreFoundation object _New and _Convert routines available to other modules. Idea by Donovan Preston, implementaion by me.
-
Jack Jansen authored
removed some outdated code.
-
Just van Rossum authored
-
Just van Rossum authored
which makes it work under Carbon. Next stop: the object browser.
-
Just van Rossum authored
- CreateCustomList(): write LDEF's in Python! (carbon + classic) - list.LGetCellDataLocation() (Jack: what's with this _WIN32/pywintoolbox.h stuff?)
-
Tim Peters authored
-
Tim Peters authored
Changes enabling Python to compile under OS/2 Visual Age C++.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 04 Nov, 2001 5 commits
-
-
Tim Peters authored
run in an infinite loop no longer grows. Thanks to Neal Norwitz for determining that test leaked!
-
Tim Peters authored
PyNode_CompileSymtable: if symtable_init() fails, free the memory allocated for the PyFutureFeatures struct.
-
Steven M. Gava authored
-
Tim Peters authored
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 authored
-