- 17 Jan, 2003 8 commits
-
-
Raymond Hettinger authored
* Use Sets module to more clearly articulate a couple of tests.
-
Raymond Hettinger authored
-
Jack Jansen authored
-
Jack Jansen authored
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 authored
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 authored
closes sourceforge pybsddb bug id 669533.
-
Gregory P. Smith authored
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 authored
M EditorWindow.py M NEWS.txt M TODO.txt
-
- 16 Jan, 2003 11 commits
-
-
Kurt B. Kaiser authored
-
Michael W. Hudson authored
-
Raymond Hettinger authored
Strengthen slicing tests. Improved variable names.
-
Raymond Hettinger authored
Add backwards compatibility test.
-
Raymond Hettinger authored
Added random test from bisect to augment the finite precomputed checks.
-
Raymond Hettinger authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Mark Hammond authored
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 Jan, 2003 13 commits
-
-
Jack Jansen authored
so just continue testing. Fixes #668787.
-
Mark Hammond authored
-
Jack Jansen authored
_strptime can now handle getting two empty strings as the timezone information.
-
Jack Jansen authored
Fixes #661762, bugfix candidate.
-
Jack Jansen authored
FSSpec.SetDates() and GetDates(). Closes #662836.
-
Skip Montanaro authored
(Someone please review what I wrote for accuracy.)
-
Raymond Hettinger authored
* Add doctest for example in the library reference manual
-
Neil Schemenauer authored
-
Raymond Hettinger authored
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 authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Raymond Hettinger authored
and unicode Patch by Christopher Blunck.
-
- 14 Jan, 2003 6 commits
-
-
Mark Hammond authored
Ensure that the 'size' arg is correctly passed to the encoding reader to prevent buffer overflows.
-
Kurt B. Kaiser authored
Configuration implementation.
-
Kurt B. Kaiser authored
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 authored
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 authored
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 authored
inspect.getsource would crash with one line definitions like: def f(x): return x or f = lambda x: x
-
- 13 Jan, 2003 2 commits
-
-
Just van Rossum authored
-
Tim Peters authored
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.
-