- 30 Jun, 2006 8 commits
-
-
Fred Drake authored
(*should* be done by the presentation, but that requires changes all over) - avoid spreading the __name meme
-
Georg Brandl authored
-
Tim Peters authored
-
Thomas Heller authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Tim Peters authored
-
Vinay Sajip authored
-
- 29 Jun, 2006 7 commits
-
-
Skip Montanaro authored
-
Martin v. Löwis authored
-
Thomas Heller authored
#ifdef WITH_THREADS/#endif blocks. Found by Sam Rushing.
-
Neal Norwitz authored
It makes the error message consistent and always sends to stderr. It would be much better for all the networking tests to hit only python.org.
-
Neal Norwitz authored
be called at the end of each test that spawns children (perhaps it should be called from regrtest instead?). This will hopefully prevent some of the unexplained failures in the buildbots (hppa and alpha) during tests that spawn children. The problems were not reproducible. There were many zombies that remained at the end of several tests. In the worst case, this shouldn't cause any more problems, though it may not help either. Time will tell.
-
Fred Drake authored
-
Fred Drake authored
(modified patch by Sam Ruby; changed to use separate REs for start and end tags to reduce matching cost for end tags; extended tests; updated to avoid breaking previous changes to support IPv6 addresses in unquoted attribute values)
-
- 28 Jun, 2006 8 commits
-
-
Trent Mick authored
-
Georg Brandl authored
-
Andrew M. Kuchling authored
[Bug #1508766] Add docs for uuid module; this puts the module in the 'Internet Protocols' section. Arguably this module could also have gone in the chapters on strings or encodings, maybe even the crypto chapter. Fred, please move if you see fit.
-
Andrew M. Kuchling authored
[Bug #1508766] Add docs for uuid module; docs written by George Yoshida, with minor rearrangements by me.
-
Armin Rigo authored
-
Nick Coghlan authored
Make full module name available as __module_name__ even when __name__ is set to something else (like '__main__')
-
Neal Norwitz authored
a KeyboardInterrupt since PyTuple_Pack was passed a NULL. Will backport.
-
Neal Norwitz authored
can be returned if fcntl (lockf) fails. This fixes the test failure on Tru64 by checking for either error rather than just EAGAIN.
-
- 27 Jun, 2006 11 commits
-
-
Ronald Oussoren authored
dylib at the root of the framework, that way tools that expect a unix-like install (python-config, but more importantly external products like mod_python) work correctly.
-
Ronald Oussoren authored
way the resulting binaries have a better change of running on 10.3. This patch also updates the search logic for sleepycat db3/4, without this patch you cannot use a sleepycat build with a non-standard prefix; with this you can (at least on OSX) if you add the prefix to CPPFLAGS/LDFLAGS at configure-time. This change is needed to build the binary installer for OSX.
-
Tim Peters authored
-
Ronald Oussoren authored
OSX 10.3 when using a binary distribution build on 10.4.
-
Vinay Sajip authored
Removed buggy exception handling in doRollover of rotating file handlers. Exceptions now propagate to caller.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
No need to install lib-old, it's empty in 2.5.
-
Neal Norwitz authored
copy. This will hopefully catch problems where directories are added under Lib/ but not to Makefile.pre.in. This breaks out the 2 runs of the test suite with and without -O which is also nicer.
-
Neal Norwitz authored
-
- 26 Jun, 2006 6 commits
-
-
Andrew M. Kuchling authored
consistent with os.wait() returning immediately because some other subprocess had previously exited; the test suite then immediately tries to lock the mailbox and gets an error saying it's already locked. To fix this, do a waitpid() so the test suite only continues once the intended child process has exited.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
On slow machines, maybe the time intervals (2 sec, 0.5 sec) will be too tight. I'll see how the buildbots like it.
-
Andrew M. Kuchling authored
remove the flock() calls. On FreeBSD, the two methods lockf() and flock() end up using the same mechanism and the second one fails. A Linux man page claims that the two methods are orthogonal (so locks acquired one way don't interact with locks acquired the other way) but that clearly must be false.
-
Andrew M. Kuchling authored
This change will probably break tests on FreeBSD buildbots, but I'll check in a fix for that next.
-
Andrew M. Kuchling authored
-