summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Properly close a file in test_os.Brett Cannon2011-03-151-8/+6
|
* Don't leave around a test symlink file.Brett Cannon2011-03-151-1/+3
|
* mergeBrett Cannon2011-03-156-22/+113
|\
| * PyErr_Print can leave sys.last_traceback hanging around; kill itBenjamin Peterson2011-03-151-10/+8
| |
| * merge headsBenjamin Peterson2011-03-155-12/+105
| |\
| | * MergeAntoine Pitrou2011-03-152-4/+7
| | |\
| | * \ Merge fix for issue #11501Antoine Pitrou2011-03-155-12/+105
| | |\ \
| | | * \ Merge fix for issue #11501Antoine Pitrou2011-03-155-12/+105
| | | |\ \
| | | | * | On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile noAntoine Pitrou2011-03-155-12/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart.
| | | * | | merge 3.2 headsGregory P. Smith2011-03-151-7/+1
| | | |\ \ \
| | | | * | | merge d71476b9a55d from tip, use start_new_session instead of os.setsid.Gregory P. Smith2011-03-151-7/+1
| | | | | | |
| | | * | | | revert the test_main() change from 08daf3ef6509 so that regrtest continues ↵Gregory P. Smith2011-03-151-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | to run this properly.
| | | * | | | Add unittests demonstrating issue #11432.Gregory P. Smith2011-03-151-15/+21
| | | | | | |
| * | | | | | should use 'is' hereBenjamin Peterson2011-03-151-1/+1
| | |_|_|_|/ | |/| | | |
* | | | | | Close a stream properly in test.test_pulldom.Brett Cannon2011-03-151-1/+3
|/ / / / / | | | | | | | | | | | | | | | | | | | | Closes issue #11550. Thanks to Ben Hayden for some inspiration on the solution.
* | | | | mergeBrett Cannon2011-03-155-18/+168
|\ \ \ \ \ | |/ / / /
| * | | | merge headsGregory P. Smith2011-03-151-8/+98
| |\ \ \ \
| | * \ \ \ merge headsBenjamin Peterson2011-03-158-27/+99
| | |\ \ \ \
| | * | | | | improve dis test coverage (closes #11559)Benjamin Peterson2011-03-151-8/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks Matias Bordese. (a few modifications of my own)
| * | | | | | revert the test_main() change from 08daf3ef6509 so that regrtest continues ↵Gregory P. Smith2011-03-151-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | to run this properly.
| * | | | | | merge updateGregory P. Smith2011-03-153-5/+51
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | MergedBarry Warsaw2011-03-151-2/+1
| | |\ \ \ \ \
| | * \ \ \ \ \ Merge and resolve Misc/NEWS.Barry Warsaw2011-03-156-23/+49
| | |\ \ \ \ \ \
| | * | | | | | | - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be usedBarry Warsaw2011-03-152-2/+49
| | | |_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | in a `with` statement. Contributed by Giampaolo Rodola.
| * | | | | | | Use start_new_session in the webbrowser module rather than a python ↵Gregory P. Smith2011-03-151-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | os.setsid preeexec_fn.
| * | | | | | | Add unittests demonstrating issue #11432.Gregory P. Smith2011-03-151-15/+21
| | | | | | | |
* | | | | | | | Add warnings support to test.support.args_from_interpreter_flags().Brett Cannon2011-03-151-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows the -j flag to regrtest to propagate warnings settings properly.
* | | | | | | | Move off of assertEquals() and over to assertEqual().Brett Cannon2011-03-151-3/+3
| |_|_|/ / / / |/| | | | | |
* | | | | | | Merge #11555 as_string doc fix from 3.2.R David Murray2011-03-151-2/+1
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | / / / | | |_|/ / / | |/| | | |
| * | | | | Merge #11555 as_string doc fix from 3.1.R David Murray2011-03-151-2/+1
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| | * | | | #11555: update doc for 3.x change to as_string mangle_from default.R David Murray2011-03-151-2/+1
| | | | | |
* | | | | | Merge obsolete comment removal from 3.2.R David Murray2011-03-151-1/+1
|\ \ \ \ \ \ | |/ / / / / | | | / / / | |_|/ / / |/| | | |
| * | | | Remove obsolete comment.R David Murray2011-03-151-1/+1
| | |_|/ | |/| |
* | | | Merge #11554 test_email_codecs activation from 3.2.R David Murray2011-03-155-22/+48
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | #11554: reactivate test_email_codecs, and make it pass.R David Murray2011-03-155-22/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | The fix is to charset.py, which was not doing the encoding to the correct output character set when doing a body_encode for either the shift-jis or euc-jp charsets. There's also a fix for handling a bytes input in encoders.py. Patch by Michael Henry, comment changes by me.
* | | Adjust test names to be more descriptive instead of depending on capitalization.briancurtin2011-03-151-4/+4
| | |
* | | import style nitsBenjamin Peterson2011-03-151-8/+13
| | |
* | | Fix #11509. Significantly increase test coverage for fileinput.briancurtin2011-03-151-15/+605
| | | | | | | | | | | | Patch by Denver Coneybeare at the PyCon 2011 Sprints.
* | | Typo.Eric V. Smith2011-03-151-1/+1
| | |
* | | merge 1579808ef25bGregory P. Smith2011-03-151-2/+5
|\ \ \ | |/ /
| * | merge 141bbcb19c06Gregory P. Smith2011-03-151-2/+5
| |\ \ | | |/
| | * Fix the @test_NNNN_tmp file terds being left in whatever your $PWD wasGregory P. Smith2011-03-151-2/+5
| | | | | | | | | | | | when test_subprocess was run.
* | | #11515: Merge with 3.2.Ezio Melotti2011-03-1526-31/+31
|\ \ \ | |/ /
| * | #11515: Merge with 3.1.Ezio Melotti2011-03-1525-30/+30
| |\ \ | | |/
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-1522-25/+25
| | |
* | | Merge long Japanese header fix from 3.2.R David Murray2011-03-152-1/+15
|\ \ \ | |/ /
| * | Fix header encoding of long headers when using euc-jp and shift_jis.R David Murray2011-03-152-1/+15
| | | | | | | | | | | | | | | | | | | | | When a header was long enough to need to be split across lines, the input charset name was used instead of the output charset name in the encoded words. This make a difference only for the two charsets above.
* | | Merge with hg.python.org.Reid Kleckner2011-03-1412-64/+197
|\ \ \
| * \ \ merge defaultMichael Foord2011-03-142-0/+37
| |\ \ \
| | * \ \ Merge with remoteNick Coghlan2011-03-144-52/+96
| | |\ \ \