summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | Fix typo in bz2 module.Nadeem Vawda2011-05-241-1/+1
| | | | | | | |
* | | | | | | | (Merge 3.2) Issue #12057: Add tests for the HZ encodingVictor Stinner2011-05-243-0/+33
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | (Merge 3.1) Issue #12057: Add tests for the HZ encodingVictor Stinner2011-05-243-0/+33
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | Issue #12057: Add tests for the HZ encodingVictor Stinner2011-05-243-0/+33
| | | | | | | |
* | | | | | | | Issue #1441530: In imaplib, read the data in one chunk to speed up largeCharles-François Natali2011-05-242-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | reads and simplify code.
* | | | | | | | (Merge 3.2) Issue #12070: Fix the Makefile parser of the sysconfig module toVictor Stinner2011-05-243-12/+31
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | | | | | | | | | | | | | handle correctly references to "bogus variable" (e.g. "prefix=$/opt/python").
| * | | | | | | Issue #12070: Fix the Makefile parser of the sysconfig module to handleVictor Stinner2011-05-243-12/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | correctly references to "bogus variable" (e.g. "prefix=$/opt/python").
* | | | | | | | (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs atVictor Stinner2011-05-243-4/+38
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | each call to their encode() method anymore, but continue to call the reset() method if the final argument is True.
| * | | | | | | (Merge 3.1) Issue #12100: Don't reset incremental encoders of CJK codecs atVictor Stinner2011-05-243-4/+38
| |\ \ \ \ \ \ \ | | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | each call to their encode() method anymore, but continue to call the reset() method if the final argument is True.
| | * | | | | | Issue #12100: Don't reset incremental encoders of CJK codecs at each call toVictor Stinner2011-05-243-4/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | their encode() method anymore, but continue to call the reset() method if the final argument is True.
* | | | | | | | Issue #12049: improve RAND_bytes() and RAND_pseudo_bytes() documentationVictor Stinner2011-05-242-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add also a security warning in the module random pointing to ssl.RAND_bytes().
* | | | | | | | merge 3.2Benjamin Peterson2011-05-241-2/+0
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | merge 3.1Benjamin Peterson2011-05-241-2/+0
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | backout 8b384de4e780, so a proper fix can be considered (#5715)Benjamin Peterson2011-05-241-2/+0
| | | | | | | |
* | | | | | | | indicate return value on __dir__ methodsBenjamin Peterson2011-05-242-3/+3
| | | | | | | |
* | | | | | | | merge 3.2Benjamin Peterson2011-05-241-3/+3
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | merge 3.1Benjamin Peterson2011-05-241-3/+3
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | use '->' to indicate return valuesBenjamin Peterson2011-05-241-3/+3
| | | | | | | |
* | | | | | | | merge 3.2Benjamin Peterson2011-05-241-1/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | merge 3.1Benjamin Peterson2011-05-241-1/+2
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | generally, sockets should be closed after they're usedBenjamin Peterson2011-05-241-1/+2
| | | | | | | |
* | | | | | | | Issue #5715: In socketserver, close the server socket in the child process.Charles-François Natali2011-05-242-1/+3
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | Issue #5715: In socketserver, close the server socket in the child process.Charles-François Natali2011-05-242-1/+3
| |\ \ \ \ \ \ \ | | |/ / / / / / | | | | | / / / | | |_|_|/ / / | |/| | | | |
| | * | | | | Issue #5715: In socketserver, close the server socket in the child process.Charles-François Natali2011-05-242-1/+3
| | | |_|/ / | | |/| | |
* | | | | | move specialized dir implementations into __dir__ methods (closes #12166)Benjamin Peterson2011-05-245-178/+178
| |_|/ / / |/| | | |
* | | | | Issue #12167: packaging.tests.test_dist unloads the temporary moduleVictor Stinner2011-05-241-0/+2
| | | | | | | | | | | | | | | | | | | | Fix a reference leak.
* | | | | Issue #12167: packaging.tests.support, LoggingCatcher restores correctly theVictor Stinner2011-05-241-1/+2
| | | | | | | | | | | | | | | | | | | | log level. Avoid also calls to .addCleanup() in setUp().
* | | | | Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the sslVictor Stinner2011-05-246-4/+106
| | | | | | | | | | | | | | | | | | | | module.
* | | | | Updated test_rollover delay to just over a second.Vinay Sajip2011-05-241-1/+1
| | | | |
* | | | | Issue #12105: test_posix skips test_oscloexec() on Linux < 2.6.23Victor Stinner2011-05-231-2/+5
| | | | |
* | | | | Issue #12158: Move linux_version() from test_socket to test.supportVictor Stinner2011-05-232-11/+11
| | | | |
* | | | | Issue #11377: platform.popen() emits a DeprecationWarningVictor Stinner2011-05-231-0/+2
| | | | |
* | | | | Merge heads.Ezio Melotti2011-05-231-2/+4
|\ \ \ \ \
| * \ \ \ \ #12074: merge with 3.2.Ezio Melotti2011-05-231-2/+4
| |\ \ \ \ \ | | |/ / / /
| | * | | | #12074: remove the /0 when there are no failures.Ezio Melotti2011-05-231-2/+4
| | | | | |
* | | | | | Issue #12151: Test now ignores datagram socket errors after server is closed.Vinay Sajip2011-05-231-10/+11
|/ / / / /
* | | | | merge 3.2Benjamin Peterson2011-05-230-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | merge headsBenjamin Peterson2011-05-231-5/+6
| |\ \ \ \
* | \ \ \ \ merge headsBenjamin Peterson2011-05-232-5/+21
|\ \ \ \ \ \
| * \ \ \ \ \ (Merge 3.2) Issue #12074: regrtest displays also the current number of failuresVictor Stinner2011-05-231-5/+6
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | Issue #12074: regrtest displays also the current number of failuresVictor Stinner2011-05-231-5/+6
| | | | | | |
| * | | | | | Issue #12151: Correction to diagnostic code.Vinay Sajip2011-05-231-1/+1
| | | | | | |
| * | | | | | Issue #12151: Added diagnostics to help diagnose intermittent socket errors.Vinay Sajip2011-05-231-0/+15
| | | | | | |
* | | | | | | merge 3.2Benjamin Peterson2011-05-233-5/+10
|\ \ \ \ \ \ \ | |/ / / / / / |/| | / / / / | | |/ / / / | |/| | | |
| * | | | | merge 3.1Benjamin Peterson2011-05-233-5/+10
| |\ \ \ \ \ | | |/ / / / | |/| / / / | | |/ / /
| | * | | correctly lookup __dir__Benjamin Peterson2011-05-233-5/+10
| | | | |
* | | | | Clean-up example.Raymond Hettinger2011-05-231-31/+41
|\ \ \ \ \ | |/ / / /
| * | | | Clean-up example.Raymond Hettinger2011-05-231-31/+41
| | | | |
* | | | | Issue #12125: fixed the failures under Solaris due to improper test cleanup.Tarek Ziade2011-05-234-1/+16
| | | | |
* | | | | fixed the cwd cleanup in packaging test_utilTarek Ziade2011-05-231-1/+8
| | | | |