- 16 Ock, 2003 8 kayıt (commit)
-
-
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 13 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.
-
Jack Jansen yazdı
Fixes #661762, bugfix candidate.
-
Jack Jansen yazdı
FSSpec.SetDates() and GetDates(). Closes #662836.
-
Skip Montanaro yazdı
(Someone please review what I wrote for accuracy.)
-
Raymond Hettinger yazdı
* Add doctest for example in the library reference manual
-
Neil Schemenauer yazdı
-
Raymond Hettinger yazdı
Note, that list.sort() is undefined for lists of sets. Add the ... prompt to the example so it runs in doctest.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
and unicode Patch by Christopher Blunck.
-
- 14 Ock, 2003 6 kayıt (commit)
-
-
Mark Hammond yazdı
Ensure that the 'size' arg is correctly passed to the encoding reader to prevent buffer overflows.
-
Kurt B. Kaiser yazdı
Configuration implementation.
-
Kurt B. Kaiser yazdı
M EditorWindow.py M NEWS.txt M config-main.def M configDialog.py M configHandler.py M configHelpSourceEdit.py M configSectionNameDialog.py - Change default: IDLE now starts with Python Shell. - Removed the File Path from the Additional Help Sources scrolled list. - Add capability to access Additional Help Sources on the web if the Help File Path begins with //http or www. (Otherwise local path is validated, as before.) - Additional Help Sources were not being posted on the Help menu in the order entered. Implement sorting the list by [HelpFiles] 'option' number. - Add Browse button to New Help Source dialog. Arrange to start in Python/Doc if platform is Windows, otherwise start in current directory. - Put the Additional Help Sources directly on the Help menu instead of in an Extra Help cascade menu. Rearrange the Help menu so the Additional Help Sources come last. Update help.txt appropriately. - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
-
Guido van Rossum yazdı
is not supported on sets. (Unfortunately, sorting a list of sets may still return random results because it uses < exclusively, but for sets that inly implements a partial ordering. Oh well.)
-
Raymond Hettinger yazdı
The two are semantically equivalent, but the first triggered a compiler warning about an unused variable. Note, the preceding steps had already accessed and decreffed the variable so the reference counts were fine.
-
Raymond Hettinger yazdı
inspect.getsource would crash with one line definitions like: def f(x): return x or f = lambda x: x
-
- 13 Ock, 2003 10 kayıt (commit)
-
-
Just van Rossum yazdı
-
Tim Peters yazdı
managed to delete the @test file it intended to delete. Also, I don't see a reason to create a 4MB file in the new test, so cut it back to 16K.
-
Guido van Rossum yazdı
This was introduced in 1998 in rev. 1.13, where I imported extensive patches that, I am sad to say, I didn't review as carefully as I should have.
-
Guido van Rossum yazdı
do_quit() -- but print a blank line first.
-
Neal Norwitz yazdı
Fix infinite recursion which occurred when printing an object whose __str__() returned self. Will backport
-
Andrew M. Kuchling yazdı
C API section by mistake
-
Neal Norwitz yazdı
-
Guido van Rossum yazdı
-
Andrew M. Kuchling yazdı
Mention deprecation of string exceptions
-
Raymond Hettinger yazdı
'%s' % u'x' return a unicode object.
-
- 12 Ock, 2003 3 kayıt (commit)
-
-
Jack Jansen yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
The interpreter doesn't crash, but it does call exit() in libncurses. Add a note to this effect. Will backport
-