- 21 Ock, 2003 12 kayıt (commit)
-
-
Jack Jansen yazdı
filenames.
-
Jack Jansen yazdı
help.
-
Andrew M. Kuchling yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
60: Added support for the SkippedEntityHandler, new in Expat 1.95.4. 61: Added support for namespace prefixes, which can be enabled by setting the "namespace_prefixes" attribute on the parser object. 65: Disable profiling changes for Python 2.0 and 2.1. 66: Update pyexpat to export the Expat 1.95.5 XML_GetFeatureList() information, and tighten up a type declaration now that Expat is using an incomplete type rather than a void * for the XML_Parser type. 67: Clarified a comment. Added support for XML_UseForeignDTD(), new in Expat 1.95.5. 68: Refactor to avoid partial duplication of the code to construct an ExpatError instance, and actually conform to the API for the exception instance as well. 69: Remove some spurious trailing whitespace. Add a special external-entity-ref handler that gets installed once a handler has raised a Python exception; this can cancel actual parsing earlier if there's an external entity reference in the input data after the the Python excpetion has been raised. 70: Untabify APPEND. 71: Backport PyMODINIT_FUNC for 2.2 and earlier.
-
Martin v. Löwis yazdı
-
Kurt B. Kaiser yazdı
(Loewis) which uses 'SRCDIR' (if available) in package dir path. 2. Merge Python IDLE setup.py Rev 1.5 (Loewis) to allow installation from the build directory. IDLEfork SF Patch 668998 (Loewis)
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
* promote the example and the documented restrictions to \subsection status * document the flag parameter of the DbfilenameShelf class
-
- 20 Ock, 2003 7 kayıt (commit)
-
-
Tim Peters yazdı
When daylight time ends, an hour repeats on the local clock (for example, in US Eastern, the clock jumps from 1:59 back to 1:00 again). Times in the repeated hour are ambiguous. A tzinfo subclass that wants to play with astimezone() needs to treat times in the repeated hour as being standard time. astimezone() previously required that such times be treated as daylight time. There seems no killer argument either way, but Guido wants the standard-time version, and it does seem easier the new way to code both American (local-time based) and European (UTC-based) switch rules, and the astimezone() implementation is simpler.
-
Tim Peters yazdı
was broken because new-in-2.3 code added a tp_as_mapping slot to tuples. Repaired that. Added basic docs to check_recursion(). The code that intended to exempt tuples and strings was also broken here, and in 2.2: these should use PyXYZ_CheckExact(), not PyXYZ_Check() -- we can't know whether subclass instances are immutable. This part (and this part alone) is a bugfix candidate.
-
Jack Jansen yazdı
framework, if applicable). This speeds up startup time by up to 50%.
-
Just van Rossum yazdı
- clear clears the entire buffer - cut doesn't cut, but copies.
-
Kurt B. Kaiser yazdı
which had empty method and super attributes. ClassBrowser.IsExpandable() could not handle the missing attributes. SF Bug 667787.
-
Walter Dörwald yazdı
-
Barry Warsaw yazdı
-
- 19 Ock, 2003 14 kayıt (commit)
-
-
Walter Dörwald yazdı
with additional tests for setdefault(), pop() and popitem().
-
Jack Jansen yazdı
FSSpec or FSRef object and returns an 8-bit pathname (utf8 encoded).
-
Jack Jansen yazdı
and spaces. Detabbed the lot.
-
Walter Dörwald yazdı
cases and a few methods. This increases code coverage in Objects/unicodeobject.c from 81% to 85%. (From SF patch #662807)
-
Walter Dörwald yazdı
port the tests to PyUnit and add many tests for error cases. This increases code coverage in Python/bltinmodule.c from 75% to 92%. (From SF patch #662807, with assert_(not fcmp(x, y)) replaced with assertAlmostEqual(x, y) where possible)
-
Neal Norwitz yazdı
Will backport.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
the end of code blocks. Patch contributed by Patrick O'Brien.
-
Raymond Hettinger yazdı
Backport candidate. All but one or two of these changes are applicable to 2.2.2.
-
Raymond Hettinger yazdı
Make the code slightly shorter, faster, and easier to read. * Eliminate unused DUP_TOPX code for x==1. compile.c always generates DUP_TOP instead. * Since only two cases remain for DUP_TOPX, replace the switch-case with if-elseif. * The in-lined integer compare does a CheckExact on both arguments. Since the second is a little more likely to fail, test it first. * The switch-case for IS/IS_NOT and IN/NOT_IN can separate the regular and inverted cases with no additional work. For all four paths, saves a test and jump.
-
Tim Peters yazdı
var for clarity.
-
Tim Peters yazdı
From Brett Cannon. Mostly speedups via caching format string -> compiled regexp.
-
Raymond Hettinger yazdı
The Py2.3 updates to the pyclbr module return both Class and Function objects. The IDLE ClassBrowser module only knew about Class and could not handle objects which did not define "super". Fixed by adding a guard.
-
Raymond Hettinger yazdı
Gernot Hillier added more detail to the internal API documentation.
-
- 18 Ock, 2003 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
The Py2.3 updates to the pyclbr module return both Class and Function objects. The IDLE ClassBrowser module only knew about Class and could not handle objects which did not define "super". Fixed by adding a guard.
-
Tim Peters yazdı
Patch from Brett Cannon: First, the 'y' directive now handles [00, 68] as a suffix for the 21st century while [69, 99] is treated as the suffix for the 20th century (this is for Open Group compatibility). strptime now returns default values that make it a valid date ... the ability to pass in a regex object to use instead of a format string (and the inverse ability to have strptime return a regex object) has been removed. This is in preparation for a future patch that will add some caching internally to get a speed boost.
-
- 17 Ock, 2003 4 kayıt (commit)
-
-
Jack Jansen yazdı
- AskFileForSave didn't work for string return values - filterProc didn't work.
-
Jack Jansen yazdı
the AEDesc data shouldn't be disposed when the Python object is. Added a C call AEDesc_NewBorrowed() to create these objects and a Python method old=AEDesc.AutoDispose(onoff) to change auto-dispose state.
-
Fred Drake yazdı
-
Fred Drake yazdı
-