summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #11572: improvements to copy module tests along with removal of old test suiteSandro Tosi2011-08-052-138/+95
|
* Fix wrong use of root logger in packaging (also a NameError)Éric Araujo2011-08-041-1/+1
|
* Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-051-26/+15
|\ | | | | | | in os.kill(). Original patch by Eli Bendersky.
| * Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-031-26/+15
| | | | | | | | in os.kill(). Original patch by Eli Bendersky.
* | Silence the altered state warning about threadgs when running test_httplib.Brett Cannon2011-08-051-4/+4
| |
* | Silence altered execution state warnings from test_telnetlib involving threads.Brett Cannon2011-08-051-0/+1
| |
* | Explicitly close a file to stop raising a ResourceWarning.Brett Cannon2011-08-051-12/+13
| |
* | merge from 3.2 - change the extra svn to svn+sshSenthil Kumaran2011-08-031-1/+1
|\ \ | |/
| * change the redundant svn scheme urljoin test case to svn+ssh scheme.Senthil Kumaran2011-08-031-1/+1
| |
| * merged headsSenthil Kumaran2011-08-031-2/+2
| |\
* | \ merge headsSenthil Kumaran2011-08-033-6/+17
|\ \ \
| * \ \ Merge with 3.2.Georg Brandl2011-08-031-2/+2
| |\ \ \ | | | |/ | | |/|
| | * | Fix spacing in string literal.Georg Brandl2011-08-031-2/+2
| | | |
| * | | handle sched_rr_get_interval not working on currentBenjamin Peterson2011-08-031-1/+8
| | | |
| * | | fix punctuationBenjamin Peterson2011-08-031-1/+1
| | | |
| * | | fix indentationBenjamin Peterson2011-08-031-2/+2
| | | |
| * | | merge headsBenjamin Peterson2011-08-031-0/+2
| |\ \ \
| | * | | Issue #11049: fix test_forget on installed Python - add os.curdir to sys.pathEli Bendersky2011-08-031-0/+2
| | | | |
| * | | | OSX doesn't check sched_get_priority_(min/max) argumentBenjamin Peterson2011-08-031-2/+4
| |/ / /
* | | | merge from 3.2 - Fix closes issue12683 - urljoin to work with relative join ↵Senthil Kumaran2011-08-032-1/+4
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| of svn scheme.
| * | Fix closes issue12683 - urljoin to work with relative join of svn scheme.Senthil Kumaran2011-08-032-1/+4
| |/
* | bsd doesn't like letting normal processes set the schedulerBenjamin Peterson2011-08-021-1/+5
| |
* | check individually for some for sched_ functionsBenjamin Peterson2011-08-021-2/+2
| |
* | sched.h can exist without sched affinity supportBenjamin Peterson2011-08-021-4/+6
| |
* | expose sched.h functions (closes #12655)Benjamin Peterson2011-08-021-1/+132
| |
* | add ThreadError to threading.__all__ (closes #12679)Benjamin Peterson2011-08-021-1/+1
| |
* | Fix closes Issue12676 - Invalid identifier used in TypeError message in ↵Senthil Kumaran2011-08-022-1/+8
|\ \ | |/ | | | | | | | | http.client. Reported by Popa Claudiu and Patch by Santoso Wijaya.
| * Fix closes Issue12676 - Invalid identifier used in TypeError message in ↵Senthil Kumaran2011-08-022-1/+8
| | | | | | | | | | | | http.client. Reported by Popa Claudiu and Patch by Santoso Wijaya.
* | Issue #11049: fix test_forget to work on installed Python, by using a ↵Eli Bendersky2011-08-021-3/+11
| | | | | | | | temporary module for import/forget
* | Merge 68b5f87566fbStefan Krah2011-08-011-0/+3
|\ \ | |/
| * Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.Stefan Krah2011-08-011-0/+3
| | | | | | | | See: https://bugzilla.redhat.com/show_bug.cgi?id=726536
* | Issue #11651: Move options for running tests into a Python script.Nadeem Vawda2011-08-011-0/+7
| | | | | | | | | | | | This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.
* | Merge #12295 fix from 3.2Éric Araujo2011-08-011-2/+3
|\ \ | |/
| * Fix resource warning when looking at turtledemo’s help (#12295)Éric Araujo2011-08-011-2/+3
| |
| * Branch mergeÉric Araujo2011-08-013-32/+73
| |\
* | | Fix bug I unwittingly added in 1521d9837d16 (found by Ezio Melotti)Éric Araujo2011-08-011-2/+1
| | |
* | | Branch mergeÉric Araujo2011-08-014-55/+104
|\ \ \
| * | | Stop trying to write into the stdlib during packaging tests (#12331).Éric Araujo2011-07-311-23/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents tests from failing when run from a Python installed in a read-only directory. The code is a bit uglier; shutil.copytree calls copystat on directories behind our back, so I had to add an os.walk with os.chmod (*and* os.path.join!) calls. shutil, I am disappoint. This changeset is dedicated to the hundreds of neurons that were lost while I was debugging this on an otherwise fine afternoon.
| * | | Merge fixes for #9860, #11104/#8688 and #12331 from 3.2Éric Araujo2011-07-313-32/+73
| |\ \ \ | | | |/ | | |/|
| | * | Stop trying to write into the stdlib during lib2to3 tests (#12331).Éric Araujo2011-07-311-7/+11
| | | | | | | | | | | | | | | | | | | | This prevents tests from failing when run from a Python installed in a read-only directory.
| | * | Fix regression with distutils MANIFEST handing (#11104, #8688).Éric Araujo2011-07-312-25/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The changed behavior of sdist in 3.1 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (76643c286b9f by Tarek and d54da9248ed9 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested the 2.7 version with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me.
* | | | using support.transient_internet helper method in the urllib2net test.Senthil Kumaran2011-07-311-10/+14
|\ \ \ \ | | |_|/ | |/| |
| * | | using support.transient_internet helper method in the urllib2net test.Senthil Kumaran2011-07-311-10/+14
| | |/ | |/|
* | | Addressing the review comments by Antoine Pitrou for smtplib.py and ↵Senthil Kumaran2011-07-312-19/+30
| | | | | | | | | | | | test_smtplib.py. Review comments by Ezio Melotti for smtplib.rst
* | | test_smtpnet: Skip STARTTLS test if the server doesn't support it.Nadeem Vawda2011-07-301-1/+7
| |/ |/| | | | | | | This issue can arise with ISPs that redirect all connections on port 25 to their own (crappy) mail servers.
* | merge heads.Senthil Kumaran2011-07-301-0/+7
|\ \
| * | also make NotImplementedType callableBenjamin Peterson2011-07-291-1/+1
| | |
| * | merge headsBenjamin Peterson2011-07-292-6/+35
| |\ \
| * | | make the types of None and Ellipsis callableBenjamin Peterson2011-07-291-0/+7
| | | |
* | | | Fix closes Issue11281 - smtplib.STMP gets source_address parameter, which ↵Senthil Kumaran2011-07-303-14/+46
| |/ / |/| | | | | | | | adds the ability to bind to specific source address on a machine with multiple interfaces. Patch by Paulo Scardine.