summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Merge #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
|\
| * #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
| * Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as poss...Antoine Pitrou2013-08-211-0/+4
* | Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as poss...Antoine Pitrou2013-08-211-0/+7
* | Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-211-0/+3
* | Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
|\ \ | |/
| * Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
* | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
|\ \ | |/
| * Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
* | Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
|\ \ | |/
| * Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
* | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
|\ \ | |/
| * Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
* | Issue 18774: Update news and whatsnew for the set optimizationsRaymond Hettinger2013-08-191-0/+4
* | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
|\ \ | |/
| * Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
* | Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok.Christian Heimes2013-08-181-0/+2
* | mergeChristian Heimes2013-08-181-0/+4
|\ \
| * | Issue #16105: When a signal handler fails to write to the file descriptor reg...Antoine Pitrou2013-08-171-0/+4
* | | add missing #Christian Heimes2013-08-181-1/+1
|\ \ \ | |/ / |/| / | |/
| * add missing #Christian Heimes2013-08-181-1/+1
* | Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-0/+2
|\ \ | |/
| * Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-0/+2
* | #18466: merge with 3.3.Ezio Melotti2013-08-171-1/+1
|\ \ | |/
| * #18466: fix more typos. Patch by FĂ©vry Thibault.Ezio Melotti2013-08-171-1/+1
* | Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-0/+3
|\ \ | |/
| * Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-0/+3
* | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-0/+6
|\ \ | |/
| * mergeChristian Heimes2013-08-161-0/+7
| |\
| * | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-0/+6
* | | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-161-0/+2
* | | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-0/+4
|\ \ \ | | |/ | |/|
| * | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-0/+4
* | | Issue #1666318: Add a test that shutil.copytree() retains directory permissions.Antoine Pitrou2013-08-161-0/+3
|\ \ \ | |/ /
| * | Issue #1666318: Add a test that shutil.copytree() retains directory permissions.Antoine Pitrou2013-08-161-0/+3
| |/
| * issue #18698: ensure importlib.reload() returns the module out of sys.modules.Eric Snow2013-08-151-0/+2
* | Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernelChristian Heimes2013-08-161-0/+3
* | Change the builtin hash algorithms' names to lower case namesChristian Heimes2013-08-151-0/+3
* | Closes issue #18698: ensure importlib.reload() returns the module out of sys....Eric Snow2013-08-151-0/+2
* | (Merge 3.3) Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
|\ \ | |/
| * Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
* | Close #12015: The tempfile module now uses a suffix of 8 random charactersVictor Stinner2013-08-131-0/+5
* | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-0/+2
* | Merge issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2
|\ \ | |/
| * Issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2
* | Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece o...Antoine Pitrou2013-08-121-0/+3
* | Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+2
|\ \ | |/
| * Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+2
* | Closes issue #18598: Have the exception message forBrett Cannon2013-08-121-0/+3
* | MergeTerry Jan Reedy2013-08-102-1/+5
|\ \