- 27 Haz, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 26 Haz, 2006 7 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
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 yazdı
-
Andrew M. Kuchling yazdı
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 yazdı
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 yazdı
This change will probably break tests on FreeBSD buildbots, but I'll check in a fix for that next.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 25 Haz, 2006 4 kayıt (commit)
-
-
Ronald Oussoren yazdı
be installed.
-
Ronald Oussoren yazdı
(macosx, binary installer). This fixes bug #1508369 for python 2.5.
-
Ronald Oussoren yazdı
to keep the demo's around.
-
Ronald Oussoren yazdı
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 Haz, 2006 4 kayıt (commit)
-
-
Hye-Shik Chang yazdı
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 yazdı
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 yazdı
('[' 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 yazdı
-
- 22 Haz, 2006 12 kayıt (commit)
-
-
Peter Astrand yazdı
-
Peter Astrand yazdı
Make it possible to run test_subprocess.py on Python 2.2, which lacks test_support.is_resource_enabled.
-
Thomas Heller yazdı
-
Georg Brandl yazdı
-
Ronald Oussoren yazdı
users how to avoid updates to their shell profile.
-
Brett Cannon yazdı
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.
-
Fred Drake yazdı
-
Georg Brandl yazdı
Test for correct lineno on list, tuple, dict literals.
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 21 Haz, 2006 9 kayıt (commit)
-
-
Armin Rigo yazdı
The problem of checking too eagerly for recursive calls is the following: if a RuntimeError is caused by recursion, and if code needs to normalize it immediately (as in the 2nd test), then PyErr_NormalizeException() needs a call to the RuntimeError class to instantiate it, and this hits the recursion limit again... causing PyErr_NormalizeException() to never finish. Moved this particular recursion check to slot_tp_call(), which is not involved in instantiating built-in exceptions. Backport candidate.
-
Gerhard Häring yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Brett Cannon yazdı
constructor, meaning it is treated as *args, not as a single argument. This means using the 'message' attribute won't work (until Py3K comes around), and so one must grab from 'arg' to get the error number.
-
- 20 Haz, 2006 3 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Andrew M. Kuchling yazdı
-