- 08 Jan, 2003 20 commits
-
-
Jack Jansen authored
Always define getenv(), as suggested by Guido. This means that os.getenv() is also defined for MacPython-OS9 (even though it doesn't actually do anything useful), and it shouldn't hurt on other platforms.
-
Jack Jansen authored
-
Jack Jansen authored
Removed the SetDates warning. The warning is in the readme, and the print statement was too obtrusive (it appeared during the installation process, and the user needed to close the resulting window manually).
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
n the Mac the frozen import that should fail actually succeeds, and we know it, so skip the test in stead of confusing the end user.
-
Jack Jansen authored
Set the limit for the number of open files to 32 if platform==mac.
-
Jack Jansen authored
Made "ascii" the default encoding for MacPython, as suggested by MvL, and ripped out my previous changes to test_unicode. Doing this for 2.3a1 should give people enough time to complain, if they want to, and then we can see whether we want to do anything about it.
-
Jack Jansen authored
-
Jack Jansen authored
-
Thomas Heller authored
-
Thomas Heller authored
This fixes the problem on Windows - that's the only system where I can test it. It leaves sys.argv alone and only changes sys.path[0] to an absolute pathname.
-
Fred Drake authored
-
Fred Drake authored
- ossaudiodev.open() raises IOError, not ossaudiodev.error, for cases which get mapped to TestSkipped
-
Neal Norwitz authored
-
Greg Ward authored
-
Greg Ward authored
Typo fix.
-
Andrew M. Kuchling authored
-
Greg Ward authored
-
Guido van Rossum authored
-
- 07 Jan, 2003 17 commits
-
-
Guido van Rossum authored
whatsnew updates as well.
-
Barry Warsaw authored
-
Barry Warsaw authored
by posixmodule.c.
-
Neal Norwitz authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Guido van Rossum authored
state swaps in readline).
-
Guido van Rossum authored
-
Guido van Rossum authored
- Whitespace normalization. - Cleaned up some comments. - Broke long lines.
-
Guido van Rossum authored
changes on a sub-branch into output for a given branch.
-
Guido van Rossum authored
__weaklist__ descriptor if we added __dict__ or __weaklist__, respectively. With unit test.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
When a module doesn't have a __path__ attribute, trigger a dialog box rather than dumping a traceback to the console.
-
Raymond Hettinger authored
The nanoseconds saved by using dict.fromkeys aren't worth the loss in clarity. Linear searches live on.
-
Raymond Hettinger authored
-
Barry Warsaw authored
support and other charset defaults. See also: http://article.gmane.org/gmane.comp.python.mime.devel/250 (this just commits the last bit of the article that wasn't part of email 2.4.3.)
-
Andrew M. Kuchling authored
-
- 06 Jan, 2003 3 commits
-
-
Guido van Rossum authored
- SLOT1BINFULL() macro: changed this to check for __rop__ overriding __op__, like binary_op1() in abstract.c -- the latter only calls the slot function once if both types use the same slot function, so the slot function must make both calls -- which it already did for the __op__, __rop__ order, but not yet for the __rop__, __op__ order when B.__class__ is a subclass of A.__class__. Also test the refinement added in rev. 2.201 that fixes the problem reported in SF bug #623669. Also test a similar provision in abstract.c's binary_op1().
-
Guido van Rossum authored
SF bug #623669: only try (e.g.) __rdiv__ before __div__ if the right class actually overrides it.
-
Raymond Hettinger authored
a single character. Shaves another 10% off the running time by avoiding the lg2(N) loops and cache effects for the other cases.
-