- 19 Ock, 2003 7 kayıt (commit)
-
-
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 16 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ı
-
Tim Peters yazdı
Not anymore it ain't.
-
Fred Drake yazdı
sometimes.
-
Tim Peters yazdı
function can't handle, don't raise IOError -- that doesn't make sense. Raise ValueError instead. Bugfix candidate.
-
Just van Rossum yazdı
-
Raymond Hettinger yazdı
* Use Sets module to more clearly articulate a couple of tests.
-
Raymond Hettinger yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
are going to replace StandardGetFile() and friends. Main differences are that these allow you to ask for specific datatypes to be returned (FSSpec, FSRef, string, unicode or subtypes thereof) and that they provide access to underlying features of Navigation Services through keyword arguments.
-
Gregory P. Smith yazdı
underlying DB has already been closed (and thus all of its cursors). This fixes a potential segfault. SF pybsddb bug id 667343 bugfix: close the DB object when raising an exception due to an error during DB.open. This prevents an exception when closing the environment about not all databases being closed. SF pybsddb bug id 667340
-
Gregory P. Smith yazdı
closes sourceforge pybsddb bug id 669533.
-
Gregory P. Smith yazdı
coredump or segmentation violation. Sourceforge patch ID 664896: http://sourceforge.net/tracker/index.php?func=detail&aid=664896&group_id=13900&atid=313900 The bug was reported on the pybsddb-users mailing list.
-
Kurt B. Kaiser yazdı
M EditorWindow.py M NEWS.txt M TODO.txt
-
- 16 Ock, 2003 11 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
Michael W. Hudson yazdı
-
Raymond Hettinger yazdı
Strengthen slicing tests. Improved variable names.
-
Raymond Hettinger yazdı
Add backwards compatibility test.
-
Raymond Hettinger yazdı
Added random test from bisect to augment the finite precomputed checks.
-
Raymond Hettinger yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Mark Hammond yazdı
case, the test module created is actually a sub-package of 'test', thus the module is named 'test.areallylongpackage...' - this caused failure. Replace the hard-coded module names with __name__ attributes, which correctly reflects any hierarchy.
-
- 15 Ock, 2003 3 kayıt (commit)
-
-
Jack Jansen yazdı
so just continue testing. Fixes #668787.
-
Mark Hammond yazdı
-
Jack Jansen yazdı
_strptime can now handle getting two empty strings as the timezone information.
-