| Commit message (Expand) | Author | Age | Files | Lines |
* | merge with 3.2 | Georg Brandl | 2012-02-21 | 1 | -1/+1 |
|\ |
|
| * | merge with 3.2 | Georg Brandl | 2012-02-21 | 1 | -3/+3 |
| |\ |
|
| | * | Remove reST markup from --help output. Also: O(n**2) is dict construction, n... | Georg Brandl | 2012-02-21 | 1 | -3/+3 |
|
|
* | | | enable hash randomization by default | Benjamin Peterson | 2012-02-21 | 1 | -18/+7 |
|
|
* | | | Fix test failure in test_cmd_line by initializing the hash secret at the earl... | Antoine Pitrou | 2012-02-21 | 1 | -2/+28 |
|\ \ \
| |/ / |
|
| * | | Fix test failure in test_cmd_line by initializing the hash secret at the earl... | Antoine Pitrou | 2012-02-21 | 1 | -2/+28 |
|
|
| * | | merge 3.2 | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
| |\ \
| | |/ |
|
| | * | ensure no one tries to hash things before the random seed is found | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
|
|
* | | | Merge branch '3.2' | Petri Lehtinen | 2012-02-21 | 1 | -6/+2 |
|\ \ \
| |/ / |
|
| * | | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures | Petri Lehtinen | 2012-02-21 | 1 | -6/+2 |
|
|
* | | | update to Unicode 6.1 | Benjamin Peterson | 2012-02-21 | 3 | -21772/+23152 |
|
|
* | | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 2 | -85/+48 |
|\ \ \
| |/ / |
|
| * | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 3 | -110/+38 |
| |\ \
| | |/ |
|
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 3 | -108/+37 |
|
|
* | | | use new generic __dict__ descriptor implementations | Benjamin Peterson | 2012-02-20 | 2 | -51/+2 |
|
|
* | | | Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay. | Antoine Pitrou | 2012-02-19 | 1 | -0/+5 |
|
|
* | | | Try to really fix compilation failures of the _ssl module under very old Open... | Antoine Pitrou | 2012-02-17 | 1 | -0/+6 |
|
|
* | | | Fix compilation when SSL_OP_SINGLE_ECDH_USE isn't defined | Antoine Pitrou | 2012-02-17 | 1 | -0/+2 |
|
|
* | | | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). | Antoine Pitrou | 2012-02-15 | 1 | -9/+14 |
|\ \ \
| |/ / |
|
| * | | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). | Antoine Pitrou | 2012-02-15 | 1 | -9/+14 |
|
|
* | | | Issue #13015: Fix a possible reference leak in defaultdict.__repr__. | Antoine Pitrou | 2012-02-15 | 1 | -1/+3 |
|\ \ \
| |/ / |
|
| * | | Issue #13015: Fix a possible reference leak in defaultdict.__repr__. | Antoine Pitrou | 2012-02-15 | 1 | -1/+3 |
|
|
| * | | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a Pr... | Petri Lehtinen | 2012-02-06 | 2 | -10/+20 |
|
|
* | | | PyUnicode_DecodeLocale() second argument is now a char*, no more an int | Victor Stinner | 2012-02-14 | 1 | -10/+10 |
|
|
* | | | Issue #13988: cElementTree is deprecated and the _elementtree accelerator is ... | Florent Xicluna | 2012-02-13 | 1 | -3/+3 |
|
|
* | | | Issue #13988: move the python bootstrap code to cElementTree.py, and remove o... | Florent Xicluna | 2012-02-11 | 1 | -232/+2 |
|
|
* | | | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 6 | -35/+18 |
|
|
* | | | Issue #13609: Add two functions to query the terminal size: | Antoine Pitrou | 2012-02-08 | 1 | -0/+130 |
|
|
* | | | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 2 | -291/+135 |
|
|
* | | | PEP 410 | Victor Stinner | 2012-02-08 | 2 | -135/+291 |
|
|
* | | | Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection | Charles-François Natali | 2012-02-08 | 1 | -0/+1 |
|
|
* | | | Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp | Victor Stinner | 2012-02-08 | 1 | -1/+0 |
|
|
* | | | Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help | Victor Stinner | 2012-02-08 | 1 | -77/+45 |
|
|
* | | | Issue #13846: Add time.monotonic(), monotonic clock. | Victor Stinner | 2012-02-07 | 1 | -15/+67 |
|
|
* | | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 1 | -5/+5 |
|
|
* | | | Merge | Brett Cannon | 2012-02-03 | 2 | -0/+117 |
|\ \ \ |
|
| * | | | Issue #13777: Add PF_SYSTEM sockets on OS X. | Martin v. Löwis | 2012-02-03 | 2 | -0/+117 |
|
|
* | | | | Check for errors in creating sub-interpreters when testing the C API. | Brett Cannon | 2012-02-03 | 1 | -0/+8 |
|/ / / |
|
* | | | Merge. | Charles-François Natali | 2012-02-02 | 1 | -1/+3 |
|\ \ \
| |/ / |
|
| * | | Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix | Charles-François Natali | 2012-02-02 | 1 | -1/+3 |
|
|
* | | | Merge branch 3.2 | Petri Lehtinen | 2012-02-01 | 2 | -8/+9 |
|\ \ \
| |/ / |
|
| * | | sqlite3: Handle strings with embedded zeros correctly | Petri Lehtinen | 2012-02-01 | 2 | -8/+9 |
|
|
* | | | Fix zipimport.c's read_directory() to use appropriate types for the values | Gregory P. Smith | 2012-01-30 | 1 | -4/+5 |
|\ \ \
| |/ / |
|
| * | | Fix zip_import.c's read_directory() to use appropriate types for the values | Gregory P. Smith | 2012-01-30 | 1 | -4/+5 |
|
|
* | | | Issue #8828: Add new function os.replace(), for cross-platform renaming with ... | Antoine Pitrou | 2012-01-30 | 1 | -13/+34 |
|
|
* | | | Issue #13874: read_null() of faulthandler uses volatile to avoid optimisation | Victor Stinner | 2012-01-29 | 1 | -1/+4 |
|
|
* | | | Issue #13848: open() and the FileIO constructor now check for NUL characters ... | Antoine Pitrou | 2012-01-29 | 1 | -21/+9 |
|\ \ \
| |/ / |
|
| * | | Issue #13848: open() and the FileIO constructor now check for NUL characters ... | Antoine Pitrou | 2012-01-29 | 1 | -22/+11 |
|
|
* | | | Issue #13806: The size check in audioop decompression functions was too stric... | Antoine Pitrou | 2012-01-28 | 1 | -3/+3 |
|\ \ \
| |/ / |
|
| * | | Issue #13806: The size check in audioop decompression functions was too stric... | Antoine Pitrou | 2012-01-28 | 1 | -3/+3 |
|
|