- 15 Jul, 2004 13 commits
-
-
Jack Jansen authored
fixed.
-
Jack Jansen authored
-
Jack Jansen authored
it is used, and made it private. Should fix #978662.
-
Jack Jansen authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Tim Peters authored
A LaTeX comment identified the 6 os.O_XXX constants the docs claimed are available on Windows but aren't. The bug report listed the same 6. Split these non-Windows constants into a different table with a possibly correct "Availability:" claim.
-
Raymond Hettinger authored
-
Kurt B. Kaiser authored
(darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580 M EditorWindow.py M NEWS.txt M configHelpSourceEdit.py M idlever.py
-
Hye-Shik Chang authored
-
Tim Peters authored
-
Tim Peters authored
implementation it's used in must give its arguments specific names.
-
- 14 Jul, 2004 20 commits
-
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
-
Jim Fulton authored
tutorial.
-
Jim Fulton authored
tp_traverse handlers. (Tim made me do it. ;)
-
Jim Fulton authored
decrementing the refcount of variables that might be accessed as a result of calling Python
-
Jim Fulton authored
- point out the importance of reassigning data members before assigning thier values - correct my missconception about return values from visitprocs. Sigh. - mention the labor saving Py_VISIT and Py_CLEAR macros.
-
Jim Fulton authored
- Fixed the display of tests in verbose output - Allow setUp and tearDown functions to be provided for DocTestSuites.
-
Raymond Hettinger authored
by the locals() call in the context constructor. * Remove unnecessary properties for int, exp, and sign which duplicated information returned by as_tuple().
-
Raymond Hettinger authored
* Context.create_decimal can take a zero default just like Decimal(). * Fix typo in comment.
-
Thomas Heller authored
-
Thomas Heller authored
-
Thomas Heller authored
CHECK INTO CVS if these files are changed.
-
Thomas Heller authored
-
Michael W. Hudson authored
[ 984722 ] Py_BuildValue loses reference counts on error I'm ever-so-slightly uneasy at the amount of work this can do with an exception pending, but I don't think that this can result in anything more serious than a strange error message.
-
Guido van Rossum authored
the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???]
-
Guido van Rossum authored
the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???]
-
Brett Cannon authored
put everything in the tuple in caps to use str.upper() instead of str.lower().
-
- 13 Jul, 2004 6 commits
-
-
Fred Drake authored
they are used
-
Tim Peters authored
expected to write their own. A NULL "object" must not be passed to the visit callback. A non-zero return from a visit proc isn't necessarily an error return (and it doesn't matter to the tp_traverse code *what* it might signify, their only job is to return it).
-
Fred Drake authored
-
Andrew M. Kuchling authored
-
Brett Cannon authored
module that is removed for testing "import" lines. Originally deleted the entry from sys.modules and then just let other code that needed it to import it again. Problem with this solution is that it lead to code that had already imported the module in question to have their own reference to a new copy of the module in question that new code couldn't reach. This lead to a failure in test_strptime since it monkey-patched the 'time' module it had a reference to while _strptime had its own reference to another copy of 'time' from being imported by test___all__ that it was using for a calculation. Also moved the testing code out of the PthFile class and into the actual test class. This was to stop using 'assert' which is useless with a -O execution.
-
Brett Cannon authored
URLs will seemingly succeed to read a URL that points to a file whose permissions you do not have to read. Backport candidate once everyone agrees with the wording.
-
- 12 Jul, 2004 1 commit
-
-
Nicholas Bastin authored
collate, so setting it back to the function name
-