Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Attempt to fix build failure on OS X and Debian alpha; the symptom is | Andrew M. Kuchling | 2006-06-26 | 1 | -1/+1 |
| | | | | | | | | | | 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. | ||||
* | Windows doesn't have os.fork(). I'll just disable this test for now | Andrew M. Kuchling | 2006-06-26 | 1 | -0/+2 |
| | |||||
* | Add a test for a conflicting lock. | Andrew M. Kuchling | 2006-06-26 | 1 | -0/+22 |
| | | | | | On slow machines, maybe the time intervals (2 sec, 0.5 sec) will be too tight. I'll see how the buildbots like it. | ||||
* | [Bug #1512163] Use one set of locking methods, lockf(); | Andrew M. Kuchling | 2006-06-26 | 1 | -12/+2 |
| | | | | | | | | | 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. | ||||
* | [Bug #1512163] Fix typo. | Andrew M. Kuchling | 2006-06-26 | 1 | -1/+1 |
| | | | | | This change will probably break tests on FreeBSD buildbots, but I'll check in a fix for that next. | ||||
* | Describe workaround for PyRange_New()'s removal | Andrew M. Kuchling | 2006-06-26 | 1 | -2/+7 |
| | |||||
* | [Bug #1511998] Various comments from Nick Coghlan; thanks! | Andrew M. Kuchling | 2006-06-26 | 1 | -18/+20 |
| | |||||
* | Also install the .egg-info files in Lib. This will cause wsgiref.egg-info to | Ronald Oussoren | 2006-06-25 | 1 | -1/+1 |
| | | | | be installed. | ||||
* | Use a path without a double slash to compile the .py files after installation | Ronald Oussoren | 2006-06-25 | 1 | -1/+1 |
| | | | | (macosx, binary installer). This fixes bug #1508369 for python 2.5. | ||||
* | Drop the calldll demo's for macos, calldll isn't present anymore, no need | Ronald Oussoren | 2006-06-25 | 5 | -214/+14 |
| | | | | to keep the demo's around. | ||||
* | Workaround for bug #1512124 | Ronald Oussoren | 2006-06-25 | 1 | -1/+8 |
| | | | | | | 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. | ||||
* | Bug #1511381: codec_getstreamcodec() in codec.c is corrected to | Hye-Shik Chang | 2006-06-23 | 2 | -3/+9 |
| | | | | | | 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) | ||||
* | Fit Makefile for the Python doc environment better; this is a step toward | Andrew M. Kuchling | 2006-06-23 | 1 | -62/+58 |
| | | | | | | | | | | | | 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. | ||||
* | - SF bug #853506: IP6 address parsing in sgmllib | Fred Drake | 2006-06-23 | 2 | -11/+45 |
| | | | | | | | | | | ('[' 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 | ||||
* | Fix refleak | Neal Norwitz | 2006-06-23 | 1 | -1/+3 |
| | |||||
* | Applied patch #1506758: Prevent MemoryErrors with large MAXFD. | Peter Astrand | 2006-06-22 | 2 | -2/+2 |
| | |||||
* | Make it possible to run test_subprocess.py on Python 2.2, which lacks ↵ | Peter Astrand | 2006-06-22 | 1 | -1/+2 |
| | | | | test_support.is_resource_enabled. | ||||
* | Small fixes, mostly in the markup. | Thomas Heller | 2006-06-22 | 1 | -7/+7 |
| | |||||
* | Fix my name ;) | Georg Brandl | 2006-06-22 | 1 | -1/+1 |
| | |||||
* | MacOSX: Add a message to the first screen of the installer that tells | Ronald Oussoren | 2006-06-22 | 1 | -2/+5 |
| | | | | users how to avoid updates to their shell profile. | ||||
* | 'warning's was improperly requiring that a command-line Warning category be | Brett Cannon | 2006-06-22 | 3 | -2/+18 |
| | | | | | | | 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. | ||||
* | fix markup nit | Fred Drake | 2006-06-22 | 1 | -1/+1 |
| | |||||
* | Test for correct compilation of try-except-finally stmt. | Georg Brandl | 2006-06-22 | 1 | -0/+15 |
| | | | | Test for correct lineno on list, tuple, dict literals. | ||||
* | Set lineno correctly on list, tuple and dict literals. | Georg Brandl | 2006-06-22 | 1 | -5/+5 |
| | |||||
* | Mention how to suppress warnings | Andrew M. Kuchling | 2006-06-22 | 1 | -3/+13 |
| | |||||
* | Reset the doc date to today for the automatic doc builds | Neal Norwitz | 2006-06-22 | 1 | -1/+1 |
| | |||||
* | Copy the wsgiref package during make install. | Neal Norwitz | 2006-06-22 | 2 | -1/+3 |
| | |||||
* | Fix for an obscure bug introduced by revs 46806 and 46808, with a test. | Armin Rigo | 2006-06-21 | 3 | -11/+22 |
| | | | | | | | | | | | | | | 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. | ||||
* | Removed call to enable_callback_tracebacks that slipped in by accident. | Gerhard Häring | 2006-06-21 | 1 | -1/+0 |
| | |||||
* | Patch #1509001: expected skips for netbsd3. | Georg Brandl | 2006-06-21 | 1 | -0/+31 |
| | |||||
* | Make test_fcntl aware of netbsd3. | Georg Brandl | 2006-06-21 | 1 | -3/+4 |
| | |||||
* | fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinally | Georg Brandl | 2006-06-21 | 2 | -19/+41 |
| | |||||
* | Bump version | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+1 |
| | |||||
* | Note some of Barry's work | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+7 |
| | |||||
* | Link to LibRef module documentation | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+13 |
| | |||||
* | At the C level, tuple arguments are passed in directly to the exception | Brett Cannon | 2006-06-21 | 1 | -4/+4 |
| | | | | | | 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. | ||||
* | Fix typo of exception name. | Brett Cannon | 2006-06-20 | 1 | -1/+1 |
| | |||||
* | Raise TestSkipped when the test socket connection is refused. | Brett Cannon | 2006-06-20 | 1 | -0/+7 |
| | |||||
* | [Bug #1504456] Mention xml -> xmlcore change | Andrew M. Kuchling | 2006-06-20 | 1 | -0/+9 |
| | |||||
* | Minor edits and rearrangements; markup fix | Andrew M. Kuchling | 2006-06-20 | 1 | -18/+14 |
| | |||||
* | Add introductory paragraphs summarizing the release; minor edits | Andrew M. Kuchling | 2006-06-20 | 1 | -11/+34 |
| | |||||
* | Terminology and typography fixes | Andrew M. Kuchling | 2006-06-20 | 3 | -5/+5 |
| | |||||
* | Add four library items | Andrew M. Kuchling | 2006-06-20 | 1 | -0/+23 |
| | |||||
* | Uncomment wsgiref section | Andrew M. Kuchling | 2006-06-20 | 1 | -8/+6 |
| | |||||
* | Tagging for release of Python 2.5b1 | Anthony Baxter | 2006-06-20 | 1 | -0/+1 |
| | |||||
* | [ 1295808 ] expat symbols should be namespaced in pyexpatv2.5b1 | Trent Mick | 2006-06-19 | 2 | -0/+128 |
| | | | | (http://python.org/sf/1295808) | ||||
* | Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338). | Trent Mick | 2006-06-19 | 12 | -310/+365 |
| | |||||
* | Remove Python 2.3 compatibility comment. | Ka-Ping Yee | 2006-06-19 | 1 | -2/+1 |
| | |||||
* | Fixed a memory leak that was introduced with incorrect usage of the Python weak | Gerhard Häring | 2006-06-19 | 2 | -2/+2 |
| | | | | | | reference API in pysqlite 2.2.1. Bumbed pysqlite version number to upcoming pysqlite 2.3.1 release. | ||||
* | remove non-working document formats from edist | Fred Drake | 2006-06-19 | 1 | -1/+1 |
| |