summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13890: Also fix for extension module tests for case-insensitivity.Brett Cannon2012-01-301-0/+6
|
* Issue #13890: Fix importlib case-sensitivity tests to not run on Windows.Brett Cannon2012-01-301-0/+6
| | | | | | | Thanks to os.environ under Windows only updating the dict and not the environment itself (as exposed by nt.environ), tests using PYTHONCASEOK always fail. Now the tests are skipped when os.environ does not do what is expected.
* merge 3.2 (closes #13908)Benjamin Peterson2012-01-302-1/+7
|\
| * ready types returned from PyType_FromSpecBenjamin Peterson2012-01-302-0/+5
| |
| * adjust declarationBenjamin Peterson2012-01-301-1/+2
| |
* | Issue #13847: Fix test_time, time.gmtime() doesn't use localtime()Victor Stinner2012-01-291-1/+0
| | | | | | | | On Windows, localtime(-1) fails, but not gmtime(1).
* | Issue #13874: read_null() of faulthandler uses volatile to avoid optimisationVictor Stinner2012-01-291-1/+4
| | | | | | | | Clang 3.0 removes "y = *x;" instruction if the optimisation level is 3.
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-296-21/+41
|\ \ | |/ | | | | | | | | in the file name. Patch by Hynek Schlawack.
| * Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-297-22/+44
| | | | | | | | | | | | in the file name. Patch by Hynek Schlawack.
* | Issue #6774: Back out c8b77efe8b56, which only brings confusion.Charles-François Natali2012-01-291-3/+1
| |
* | merge with 3.2Georg Brandl2012-01-291-4/+4
|\ \ | |/
| * Fix #13900: resolve self-referential description of a parameter.Georg Brandl2012-01-291-4/+4
| |
* | merge 3.2Benjamin Peterson2012-01-291-285/+0
|\ \ | |/
| * remove tests from really old regex moduleBenjamin Peterson2012-01-291-285/+0
| |
* | Issue #13806: The size check in audioop decompression functions was too ↵Antoine Pitrou2012-01-283-9/+25
|\ \ | |/ | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
| * Issue #13806: The size check in audioop decompression functions was too ↵Antoine Pitrou2012-01-283-9/+25
| | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
* | Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-25/+25
|\ \ | |/
| * Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-20/+20
| |
* | Fix typo in comment.Nadeem Vawda2012-01-281-1/+1
| |
* | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-282-0/+2
|\ \ | |/ | | | | by Matt Joiner.
| * Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-282-0/+2
| | | | | | | | by Matt Joiner.
* | Merge 3.2 -> default (issue 13889)Mark Dickinson2012-01-271-0/+5
|\ \ | |/
| * Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of ↵Mark Dickinson2012-01-271-0/+5
| | | | | | | | dtoa.c functions in float round.
* | Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
|\ \ | |/
| * Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
| |
* | merge heads (#13887)Benjamin Peterson2012-01-271-0/+5
|\ \ | |/
| * note that get() is not affected by default_factory (closes #13887)Benjamin Peterson2012-01-271-0/+5
| |
* | Fix error handling in examples of C API use.Antoine Pitrou2012-01-271-11/+25
|\ \ | |/
| * Fix error handling in examples of C API use.Antoine Pitrou2012-01-271-11/+25
| |
* | Issue #13812: When a multiprocessing Process child raises an exception, ↵Antoine Pitrou2012-01-274-5/+30
|\ \ | |/ | | | | flush stderr after printing the exception traceback.
| * Issue #13812: When a multiprocessing Process child raises an exception, ↵Antoine Pitrou2012-01-274-5/+30
| | | | | | | | flush stderr after printing the exception traceback.
* | Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL.Antoine Pitrou2012-01-271-1/+2
|\ \ | |/
| * Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL.Antoine Pitrou2012-01-271-1/+2
| |
* | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ↵Antoine Pitrou2012-01-272-2/+7
|\ \ | |/ | | | | attack countermeasure.
| * Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ↵Antoine Pitrou2012-01-272-2/+7
| |\ | | | | | | | | | attack countermeasure.
| | * Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ↵Antoine Pitrou2012-01-272-1/+5
| | | | | | | | | | | | attack countermeasure.
| * | mergeBrett Cannon2012-01-262-1/+3
| |\ \
* | \ \ MergeBrett Cannon2012-01-273-23/+45
|\ \ \ \
| * | | | Issue #13847: Make test_localtime_failure() more robustVictor Stinner2012-01-271-10/+15
| | | | | | | | | | | | | | | | | | | | Skip the test if we are unable to find an invalid time_t value.
| * | | | Issue #13847: Fix test_mktime(), time.localtime() now raises OSErrorVictor Stinner2012-01-261-1/+1
| | | | |
| * | | | Issue #13847: time.clock() now raises a RuntimeError if the processor time usedVictor Stinner2012-01-262-12/+29
| | | | | | | | | | | | | | | | | | | | is not available or its value cannot be represented
* | | | | Relocate importlib._case_ok to importlib._bootstrap.Brett Cannon2012-01-272-19/+27
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | This required updating the code to use posix instead of os. This is all being done to make bootstrapping easier to removing dependencies that are kept in importlib.__init__ and thus outside of the single file to bootstrap from.
* | | | MergeBrett Cannon2012-01-267-64/+86
|\ \ \ \
| * | | | Issue #13847: time.localtime() and time.gmtime() now raise an OSError insteadVictor Stinner2012-01-263-52/+81
| | | | | | | | | | | | | | | | | | | | | | | | | of ValueError on failure. time.ctime() and time.asctime() now raises an OSError if localtime() failed.
| * | | | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs.Meador Inge2012-01-263-5/+4
| |\ \ \ \ | | |/ / /
| | * | | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs.Meador Inge2012-01-263-5/+4
| | | | |
| * | | | MergeBrett Cannon2012-01-264-42/+52
| |\ \ \ \
| * \ \ \ \ MergeRaymond Hettinger2012-01-261-1/+1
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | Issue 13870: Fix out of date comment.Raymond Hettinger2012-01-261-1/+1
| | | | | |
| * | | | | Remove now useless arbitrary limit of module name lengthVictor Stinner2012-01-251-6/+0
| | | | | |