- 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 7 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
-
Andrew M. Kuchling authored
-
- 25 Jun, 2006 4 commits
-
-
Ronald Oussoren authored
be installed.
-
Ronald Oussoren authored
(macosx, binary installer). This fixes bug #1508369 for python 2.5.
-
Ronald Oussoren authored
to keep the demo's around.
-
Ronald Oussoren authored
Without this patch IDLE will get unresponsive when you open the debugger window on OSX. This is both using the system Tcl/Tk on Tiger as the latest universal download from tk-components.sf.net.
-
- 23 Jun, 2006 4 commits
-
-
Hye-Shik Chang authored
omit a default "error" argument for NULL pointer. This allows the parser to take a codec from cjkcodecs again. (Reported by Taewook Kang and reviewed by Walter Doerwald)
-
Andrew M. Kuchling authored
including the howtos in the build process. * Put LaTeX output in ../paper-<whatever>/. * Put HTML output in ../html/ * Explain some of the Makefile variables * Remove some cruft dating to my environment (e.g. the 'web' target) This makefile isn't currently invoked by the documentation build process, so these changes won't destabilize anything.
-
Fred Drake authored
('[' and ']' were not accepted in unquoted attribute values) - cleaned up tests of character and entity reference decoding so the tests cover the documented relationships among handle_charref, handle_entityref, convert_charref, convert_codepoint, and convert_entityref, without bringing up Unicode issues that sgmllib cannot be involved in
-
Neal Norwitz authored
-
- 22 Jun, 2006 6 commits
-
-
Peter Astrand authored
-
Peter Astrand authored
Make it possible to run test_subprocess.py on Python 2.2, which lacks test_support.is_resource_enabled.
-
Thomas Heller authored
-
Georg Brandl authored
-
Ronald Oussoren authored
users how to avoid updates to their shell profile.
-
Brett Cannon authored
both a subclass of Warning and a subclass of types.ClassType. The latter is no longer true thanks to new-style exceptions. Closes bug #1510580. Thanks to AMK for the test.
-