Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | remove shebang line from non-executable test | Benjamin Peterson | 2010-03-11 | 1 | -2/+0 | |
| | ||||||
* | normalize shebang lines to #!/usr/bin/env python | Benjamin Peterson | 2010-03-11 | 26 | -26/+26 | |
| | ||||||
* | revert r78842 cgi.py change | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 | |
| | ||||||
* | use proper shebang lines | Benjamin Peterson | 2010-03-11 | 2 | -2/+2 | |
| | ||||||
* | remove executable property from doc files | Benjamin Peterson | 2010-03-11 | 2 | -0/+0 | |
| | ||||||
* | Fix repr of tree Element on windows. | Florent Xicluna | 2010-03-11 | 2 | -10/+12 | |
| | ||||||
* | Issue #6472: The xml.etree package is updated to ElementTree 1.3. The ↵ | Florent Xicluna | 2010-03-11 | 11 | -1180/+3296 | |
| | | | | cElementTree module is updated too. | |||||
* | Another fix to test_executable() of test_sys: set the current working to avoid | Victor Stinner | 2010-03-11 | 1 | -1/+4 | |
| | | | | the #7774 bug. | |||||
* | Fix test_executable introduce in previous commit (r78835): Windows is able to | Victor Stinner | 2010-03-11 | 1 | -2/+2 | |
| | | | | | retrieve the absolute Python path even if argv[0] has been set to a non existent program name. | |||||
* | Issue #7774: Set sys.executable to an empty string if argv[0] has been | Victor Stinner | 2010-03-11 | 4 | -2/+22 | |
| | | | | | | | | set to an non existent program name and Python is unable to retrieve the real program name. Fix also sysconfig: if sys.executable is an empty string, use the current working directory. | |||||
* | Revert r78830: realpath() should really be applied to sys.executable. | Florent Xicluna | 2010-03-11 | 2 | -4/+3 | |
| | ||||||
* | It is not optimal to test sys.stderr on a debug build. | Florent Xicluna | 2010-03-11 | 1 | -2/+1 | |
| | ||||||
* | Fix the test_subprocess failure when sys.executable is meaningless: '' or a ↵ | Florent Xicluna | 2010-03-11 | 2 | -3/+4 | |
| | | | | | | directory. It does not fix #7774. | |||||
* | Issue #7880: Fix sysconfig when the python executable is a symbolic link. | Florent Xicluna | 2010-03-10 | 3 | -7/+27 | |
| | ||||||
* | ooops, fix error message in execusercustomize() | Victor Stinner | 2010-03-10 | 1 | -1/+1 | |
| | | | | Copy/paste failure :-) | |||||
* | Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt | Victor Stinner | 2010-03-10 | 6 | -23/+48 | |
| | | | | | | (SIGINT). If an error occurs while importing the site module, the error is printed and Python exits. Initialize the GIL before importing the site module. | |||||
* | fix ugly configure output (follow up to #6943) | Benjamin Peterson | 2010-03-09 | 2 | -28/+30 | |
| | ||||||
* | handle an empty OPT variable correctly #8100 | Benjamin Peterson | 2010-03-09 | 2 | -2/+2 | |
| | ||||||
* | #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. | Florent Xicluna | 2010-03-09 | 2 | -18/+33 | |
| | ||||||
* | Improve code clarity a bit. | Raymond Hettinger | 2010-03-09 | 1 | -5/+10 | |
| | ||||||
* | Have links in OrderedDicts be native Python lists instead | Raymond Hettinger | 2010-03-09 | 1 | -28/+19 | |
| | | | | | | of a custom class with __slots__. This simplifies the code a bit, reduces memory consumption, improves speed, and eliminates the need for weak reference proxies. | |||||
* | Add nicer docstrings to namedtuples(). | Raymond Hettinger | 2010-03-09 | 2 | -3/+9 | |
| | | | | Provides better tooltips and looks better in help(). | |||||
* | Improve the basic example. | Raymond Hettinger | 2010-03-09 | 1 | -3/+7 | |
| | | | | | * Show both the decorator and regular form for assertRaises() * Use assertTrue() instead of assertIn() to teach useful minimal subset of the API | |||||
* | set svn:eol-style on various files | Benjamin Peterson | 2010-03-08 | 3 | -456/+454 | |
| | ||||||
* | Fix typo. | Georg Brandl | 2010-03-08 | 1 | -1/+1 | |
| | ||||||
* | #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. | Florent Xicluna | 2010-03-08 | 4 | -12/+64 | |
| | ||||||
* | Move some tests from test_macpath to test_genericpath.CommonTest | Florent Xicluna | 2010-03-08 | 2 | -10/+12 | |
| | ||||||
* | Add various items | Andrew M. Kuchling | 2010-03-08 | 1 | -0/+13 | |
| | ||||||
* | On finalize, don't try to join not started process. | Florent Xicluna | 2010-03-08 | 1 | -5/+3 | |
| | ||||||
* | Replace the stderr logging with assertNotEqual(returncode, 0). | Florent Xicluna | 2010-03-08 | 1 | -4/+2 | |
| | ||||||
* | Fix syntax: "rc != None" -> "rc is not None" | Florent Xicluna | 2010-03-08 | 2 | -2/+2 | |
| | ||||||
* | Don't fail on a debug() statement, if the worker PID is (still) None. | Florent Xicluna | 2010-03-08 | 1 | -1/+1 | |
| | ||||||
* | Fix for issue 8066: readline should not be linked against libedit when the | Ronald Oussoren | 2010-03-08 | 1 | -1/+4 | |
| | | | | deployment target is 10.4, libedit on 10.4 is too broken. | |||||
* | remove svn:executable from scripts without a shebang line | Benjamin Peterson | 2010-03-08 | 50 | -0/+0 | |
| | ||||||
* | Issue #7143: get_payload used to strip any trailing newline from a | R. David Murray | 2010-03-08 | 7 | -9/+32 | |
| | | | | | | | | | | base64 transfer-encoded payload *after* decoding it; it no longer does. email had a special method in utils, _bdecode, specifically to do this, so it must have served a purpose at some point, yet it is clearly wrong per RFC. Fixed with Barry's approval, but no backport. Email package minor version number is bumped, now version 4.0.1. Patch by Joaquin Cuenca Abela. | |||||
* | Backport the Popen.poll() protection from subprocess to multiprocessing. See ↵ | Florent Xicluna | 2010-03-07 | 1 | -1/+6 | |
| | | | | | | #1731717. It should fix transient failures on test_multiprocessing. | |||||
* | Remove accidental print statement from last commit. | Michael Foord | 2010-03-07 | 1 | -1/+0 | |
| | ||||||
* | Fix accidental name rebinding in unittest py3k warning filtering. | Michael Foord | 2010-03-07 | 1 | -2/+3 | |
| | ||||||
* | Addition of setUpClass and setUpModule shared fixtures to unittest. | Michael Foord | 2010-03-07 | 5 | -11/+600 | |
| | ||||||
* | #8044: document Py_{Enter,Leave}RecursiveCall functions. | Georg Brandl | 2010-03-07 | 1 | -0/+30 | |
| | ||||||
* | #8039: document conditional expressions better, giving them their own section. | Georg Brandl | 2010-03-07 | 1 | -11/+26 | |
| | ||||||
* | #8085: The function is called PyObject_NewVar, not PyObject_VarNew. | Georg Brandl | 2010-03-07 | 2 | -2/+2 | |
| | ||||||
* | Fix for potentials errors in constructing unittest failure messages. Plus ↵ | Michael Foord | 2010-03-07 | 2 | -13/+70 | |
| | | | | skipped test methods no longer run setUp and tearDown (Issue 8059) | |||||
* | Refresh the documentation for the test.test_support module. | Florent Xicluna | 2010-03-07 | 2 | -28/+60 | |
| | ||||||
* | #2777: Try hard to make Win7 buildbot happy... | Florent Xicluna | 2010-03-07 | 1 | -2/+3 | |
| | ||||||
* | Silence compiler warning. | Mark Dickinson | 2010-03-07 | 1 | -1/+4 | |
| | ||||||
* | Issue #1530559: When packing a non-integer with any integer conversion | Mark Dickinson | 2010-03-07 | 4 | -34/+127 | |
| | | | | | | | | | code using struct.pack, attempt to convert to an integer first using the argument's __int__ method (if present). Also raise a DeprecationWarning for any such usage of __int__. This fixes a regression from 2.6, where some (but not all) integer conversion codes already used __int__. | |||||
* | Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 ↵ | Florent Xicluna | 2010-03-07 | 1 | -39/+44 | |
| | | | | | | platforms. Do not hide the KeyboardInterrupt on POSIX platforms. | |||||
* | #5341: more built-in vs builtin fixes. | Georg Brandl | 2010-03-07 | 7 | -62/+62 | |
| | ||||||
* | #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. | Florent Xicluna | 2010-03-07 | 1 | -3/+0 | |
| |