- 22 May, 2003 12 kayıt (commit)
-
-
Walter Dörwald yazdı
so make it static.
-
Raymond Hettinger yazdı
-
Jeremy Hylton yazdı
Remove comment about how code used to work.
-
Jeremy Hylton yazdı
to do. XXX Please be careful when checking in patches to avoid checking in junk that explains what the patched code used to do.
-
Tim Peters yazdı
-
Fred Drake yazdı
document" text from html/stdabout.dat, not html/about.dat.
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
Check the supplied breakpoint number more carefully. (Incompatibility: before this patch, "enable -1" would enable the last breakpoint on the list; now -1 is not a legal ID. Not sure anyone would ever use negative indices...) 2.2 bugfix candidate, assuming making -1 illegal isn't considered a problem.
-
Neal Norwitz yazdı
* Move new test_byteswap into FPTest. * Remove extra lines at end of file.
-
Walter Dörwald yazdı
patterns as floats/doubles results in floating point exceptions. Fix this by implementing a separate test_byteswap() for the floating point tests. This new test compares the tostring() values of both arrays instead of the arrays themselves. Discovered by Neal Norwitz.
-
- 21 May, 2003 5 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
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.
-
Jeremy Hylton yazdı
The compiler was reseting the list comprehension tmpname counter for each function, but the symtable was using the same counter for the entire module. Repair by move tmpname into the symtable entry. Bugfix candidate.
-
Raymond Hettinger yazdı
Fulfilled request to special case repetitions of lists of length 0 or 1.
-
- 20 May, 2003 15 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Barry Warsaw yazdı
in .po metadata caused a crash. Also, removed some unnecessary code. Backport candidate.
-
Barry Warsaw yazdı
in .po metadata caused a crash. Backport candidate.
-
Fred Drake yazdı
-
Tim Peters yazdı
really can't be smushed together. Bugfix candidate.
-
Fred Drake yazdı
-
Fred Drake yazdı
Line numbering of examples is not used elsewhere.
-
Christian Tismer yazdı
The presence of this bit controls, whether there are special fields for non-recursive calls.
-
Just van Rossum yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* added the missing parameter * put optional parameters in correct positional order
-
Raymond Hettinger yazdı
Paul Moore's patch to have timeit.py check the current directory for imports (instead of the directory for Lib/timeit.py).
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
- 19 May, 2003 4 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
subprocess polling has terminated. Tk callit gets unhappy if it can't find the function 'after' scheduled to run. M PyShell.py
-
Martin v. Löwis yazdı
-
Skip Montanaro yazdı
* Add optional delimiters arg to Sniffer.sniff() which restricts the set of candidate field delimiters.
-
Kurt B. Kaiser yazdı
Modified Files: idle idle.py idle.pyw
-
- 18 May, 2003 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Walter Dörwald yazdı
being relative to the end of the array, just like list.insert() does. This closes SF bug #739313.
-
Brett Cannon yazdı
-