summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | Fix added for recent changes in non-threading environments.Vinay Sajip2012-02-232-7/+28
| | |/ /
| * | | Merged logging flush/close changes from 3.2.Vinay Sajip2012-02-232-27/+33
| |\ \ \ | | |/ /
| | * | logging: Added locking in flush() and close() handler methods. Thanks to ↵Vinay Sajip2012-02-232-29/+35
| | |/ | | | | | | | | | Fayaz Yusuf Khan for the suggestion.
| * | merge 3.2Benjamin Peterson2012-02-230-0/+0
| |\ \ | | |/
| | * merge 3.1Benjamin Peterson2012-02-230-0/+0
| | |\
| | | * update copyright yearBenjamin Peterson2012-02-231-1/+1
| | | |
| * | | merge 3.2Benjamin Peterson2012-02-231-0/+1
| |\ \ \ | | |/ /
| | * | merge 3.1 (with 3.1.5rc1 release tag)Benjamin Peterson2012-02-231-0/+1
| | |\ \ | | | |/
| | | * Added tag v3.1.5rc1 for changeset ee26aca3219cBenjamin Peterson2012-02-231-0/+1
| | | |
| | | * version now 3.1.5rc1v3.1.5rc1Benjamin Peterson2012-02-236-9/+9
| | | |
* | | | Improper type for __package__ should raise TypeError, not ValueError.Brett Cannon2012-02-232-2/+2
| | | |
* | | | Do a type check instead of an interface check.Brett Cannon2012-02-231-2/+2
|/ / /
* | | MergeBrett Cannon2012-02-231-29/+7
|\ \ \
| * | | Simplify zlib bigmem tests.Nadeem Vawda2012-02-231-6/+2
| | | |
| * | | Fix previous fix (for test_zlib) to work on 32-bit systems.Nadeem Vawda2012-02-231-2/+2
| | | |
| * | | Issue #13873: Fix crash in test_zlib on bigmem buildbot.Nadeem Vawda2012-02-231-23/+5
| | | |
* | | | Refactor importlib to make it easier to re-implement in C.Brett Cannon2012-02-221-45/+31
|/ / /
* | | Fix doc of an internal function: unicode_write_cstr()Victor Stinner2012-02-221-2/+3
| | |
* | | Issue #14077: importlib: Fix regression introduced by de6703671386.Charles-François Natali2012-02-221-3/+6
| | |
* | | Null mergeAntoine Pitrou2012-02-220-0/+0
|\ \ \ | |/ /
| * | Fix (presumably) test_hash under big-endian systems (PPC).Antoine Pitrou2012-02-221-2/+8
| | |
* | | Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵Antoine Pitrou2012-02-222-4/+6
|\ \ \ | |/ / | | | | | | encoding.
| * | Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵Antoine Pitrou2012-02-222-1/+6
| | | | | | | | | | | | encoding.
| * | In find_module(), do not silence fileno() and dup() errors.Antoine Pitrou2012-02-221-0/+2
| | |
* | | Fix compile failure under WindowsAntoine Pitrou2012-02-221-1/+1
| | |
* | | Optimize str%arg for number formats: %i, %d, %u, %x, %pVictor Stinner2012-02-221-4/+52
| | | | | | | | | | | | | | | Write a specialized function to write an ASCII/latin1 C char* string into a Python Unicode string.
* | | Micro-optimize computation of maxchar in PyUnicode_TransformDecimalToASCII()Victor Stinner2012-02-221-2/+2
| | |
* | | Micro-optimize unicode_expandtabs(): use FILL() macro to write N spacesVictor Stinner2012-02-221-5/+2
| | |
* | | PyUnicode_New() and unicode_putchar() check for MAX_UNICODE maximum (U+10FFFF)Victor Stinner2012-02-221-0/+2
| | |
* | | Merge: #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-222-0/+15
|\ \ \ | |/ / | | | | | | Patch by Francisco Martín Brugué
| * | Issue #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-222-0/+15
| | | | | | | | | | | | Patch by Francisco Martín Brugué
* | | Fix sporadic test_subprocess regression introduced by 834650d63130.Ross Lagerwall2012-02-221-2/+2
| | |
* | | Fix (presumably) test_hash under big-endian systems (PPC).Antoine Pitrou2012-02-221-2/+8
| | |
* | | Additional debug info in case of failureAntoine Pitrou2012-02-221-2/+1
| | |
* | | unload() should be sufficientAntoine Pitrou2012-02-221-2/+2
| | |
* | | Try to debug sporadic test failuresAntoine Pitrou2012-02-221-2/+5
| | |
* | | remove unapplicable statementBenjamin Peterson2012-02-211-4/+2
| | |
* | | merge with 3.2Georg Brandl2012-02-212-2/+2
|\ \ \ | |/ /
| * | merge with 3.2Georg Brandl2012-02-213-5/+5
| |\ \ | | |/
| | * Remove reST markup from --help output. Also: O(n**2) is dict construction, ↵Georg Brandl2012-02-213-5/+5
| | | | | | | | | | | | not single insertion.
* | | site: don't import traceback at startup to speed up Python startupVictor Stinner2012-02-211-1/+1
| | |
* | | enable hash randomization by defaultBenjamin Peterson2012-02-219-65/+44
| | |
* | | Issue #12406: Update list of files.Martin v. Löwis2012-02-211-7/+43
| | |
* | | Actually run the new tests.Antoine Pitrou2012-02-211-0/+1
| | |
* | | Add a test that memoryviews have hash randomization enabled.Antoine Pitrou2012-02-211-0/+6
| | |
* | | Fix test failure in test_cmd_line by initializing the hash secret at the ↵Antoine Pitrou2012-02-215-4/+41
|\ \ \ | |/ / | | | | | | earliest point.
| * | Fix test failure in test_cmd_line by initializing the hash secret at the ↵Antoine Pitrou2012-02-215-4/+41
| | | | | | | | | | | | earliest point.
* | | Issue #12406: prevent case where shortened name could conflict with short name.Martin v. Löwis2012-02-211-8/+10
| | |
* | | merge 2.6Martin v. Löwis2012-02-212-2/+4
|\ \ \ | |/ /
| * | Issue #6807: Run msisupport.mak earlier.Martin v. Löwis2012-02-212-2/+4
| | |