summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* It is not optimal to test sys.stderr on a debug build.Florent Xicluna2010-03-111-2/+1
|
* Fix the test_subprocess failure when sys.executable is meaningless: '' or a ↵Florent Xicluna2010-03-112-3/+4
| | | | | | directory. It does not fix #7774.
* Issue #7880: Fix sysconfig when the python executable is a symbolic link.Florent Xicluna2010-03-103-7/+27
|
* ooops, fix error message in execusercustomize()Victor Stinner2010-03-101-1/+1
| | | | Copy/paste failure :-)
* Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-106-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 Peterson2010-03-092-28/+30
|
* handle an empty OPT variable correctly #8100Benjamin Peterson2010-03-092-2/+2
|
* #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag.Florent Xicluna2010-03-092-18/+33
|
* Improve code clarity a bit.Raymond Hettinger2010-03-091-5/+10
|
* Have links in OrderedDicts be native Python lists insteadRaymond Hettinger2010-03-091-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 Hettinger2010-03-092-3/+9
| | | | Provides better tooltips and looks better in help().
* Improve the basic example.Raymond Hettinger2010-03-091-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 filesBenjamin Peterson2010-03-083-456/+454
|
* Fix typo.Georg Brandl2010-03-081-1/+1
|
* #7624: Fix isinstance(foo(), collections.Callable) for old-style classes.Florent Xicluna2010-03-084-12/+64
|
* Move some tests from test_macpath to test_genericpath.CommonTestFlorent Xicluna2010-03-082-10/+12
|
* Add various itemsAndrew M. Kuchling2010-03-081-0/+13
|
* On finalize, don't try to join not started process.Florent Xicluna2010-03-081-5/+3
|
* Replace the stderr logging with assertNotEqual(returncode, 0).Florent Xicluna2010-03-081-4/+2
|
* Fix syntax: "rc != None" -> "rc is not None"Florent Xicluna2010-03-082-2/+2
|
* Don't fail on a debug() statement, if the worker PID is (still) None.Florent Xicluna2010-03-081-1/+1
|
* Fix for issue 8066: readline should not be linked against libedit when theRonald Oussoren2010-03-081-1/+4
| | | | deployment target is 10.4, libedit on 10.4 is too broken.
* remove svn:executable from scripts without a shebang lineBenjamin Peterson2010-03-0850-0/+0
|
* Issue #7143: get_payload used to strip any trailing newline from aR. David Murray2010-03-087-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 Xicluna2010-03-071-1/+6
| | | | | | #1731717. It should fix transient failures on test_multiprocessing.
* Remove accidental print statement from last commit.Michael Foord2010-03-071-1/+0
|
* Fix accidental name rebinding in unittest py3k warning filtering.Michael Foord2010-03-071-2/+3
|
* Addition of setUpClass and setUpModule shared fixtures to unittest.Michael Foord2010-03-075-11/+600
|
* #8044: document Py_{Enter,Leave}RecursiveCall functions.Georg Brandl2010-03-071-0/+30
|
* #8039: document conditional expressions better, giving them their own section.Georg Brandl2010-03-071-11/+26
|
* #8085: The function is called PyObject_NewVar, not PyObject_VarNew.Georg Brandl2010-03-072-2/+2
|
* Fix for potentials errors in constructing unittest failure messages. Plus ↵Michael Foord2010-03-072-13/+70
| | | | skipped test methods no longer run setUp and tearDown (Issue 8059)
* Refresh the documentation for the test.test_support module.Florent Xicluna2010-03-072-28/+60
|
* #2777: Try hard to make Win7 buildbot happy...Florent Xicluna2010-03-071-2/+3
|
* Silence compiler warning.Mark Dickinson2010-03-071-1/+4
|
* Issue #1530559: When packing a non-integer with any integer conversionMark Dickinson2010-03-074-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 Xicluna2010-03-071-39/+44
| | | | | | platforms. Do not hide the KeyboardInterrupt on POSIX platforms.
* #5341: more built-in vs builtin fixes.Georg Brandl2010-03-077-62/+62
|
* #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.Florent Xicluna2010-03-071-3/+0
|
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-078-26/+101
| | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings.
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-079-40/+45
|
* Fix for issue #7998: pythonw didn't work when --with-framework-name wasRonald Oussoren2010-03-072-2/+2
| | | | specified
* Reverting the change made in r78431.Senthil Kumaran2010-03-072-4/+0
|
* eliminate py3k warnings in argparseBenjamin Peterson2010-03-072-0/+12
|
* more specific exception for wrong kind of raise #8082Benjamin Peterson2010-03-071-2/+3
|
* post release updateBenjamin Peterson2010-03-062-1/+13
|
* tag 2.7 alpha 4Benjamin Peterson2010-03-061-0/+1
|
* bump version to 2.7a4v2.7a4Benjamin Peterson2010-03-066-7/+7
|
* Skip test_send_signal, test_kill, test_terminate on win32 platforms, for ↵Florent Xicluna2010-03-061-5/+11
| | | | 2.7a4 release.
* Minor tweaking of previous r78734, and add a NEWS entry.Florent Xicluna2010-03-065-52/+61
|