- 05 Kas, 2001 20 kayıt (commit)
-
-
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 7 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ı
-
Tim Peters yazdı
the internal comparison routines.
-
Barry Warsaw yazdı
__getaddr(): Watch out for empty addresses that can happen when something like "MAIL FROM:<CR>" is received. This avoids the IndexError and rightly returns an SMTP syntax error. parseargs(): We didn't handle the 2-arg case where both the localspec and the remotespec were provided on the command line.
-
- 03 Kas, 2001 6 kayıt (commit)
-
-
Tim Peters yazdı
Just doc and NEWS here, about the change in gc.garbage meaning.
-
Tim Peters yazdı
and NEWS. Bugfix candidate? That's a dilemma for Anthony <wink>: /F did fix a longstanding bug here, but the fix can cause code to raise an exception that previously worked by accident.
-
Steven M. Gava yazdı
-
Steven M. Gava yazdı
-
Martin v. Löwis yazdı
-
Steven M. Gava yazdı
-
- 02 Kas, 2001 7 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Simplfy the insint() macro to use PyModule_AddIntConstant().
-