summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson2012-04-151-2/+8
* prevent writing to stderr from messing up the exception state (closes #14474)Benjamin Peterson2012-04-021-0/+3
* Issue #14437: Fix building the _io module under Cygwin.Antoine Pitrou2012-03-311-1/+1
* Issue #3367: NULL-terminate argv[] copies to prevent an invalid accessStefan Krah2012-03-261-2/+4
* Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.Ross Lagerwall2012-03-191-1/+12
* Fixes Issue 14234: fix for the previous commit, keep compilation whenGregory P. Smith2012-03-152-0/+7
* Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130
|\
| * Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130
* | fix indentationBenjamin Peterson2012-03-131-7/+7
* | keep the buffer object around while we're using it (closes #14212)Benjamin Peterson2012-03-072-33/+49
* | Issue #14125: backport refleak fix (d4adbf908983).Stefan Krah2012-02-271-2/+3
* | Fix typo in “seperat{or,ion}”Éric Araujo2012-02-262-2/+2
* | merge with 3.2Georg Brandl2012-02-211-3/+3
|\ \ | |/
| * Remove reST markup from --help output. Also: O(n**2) is dict construction, n...Georg Brandl2012-02-211-3/+3
* | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-211-2/+28
* | merge 3.2Benjamin Peterson2012-02-211-0/+1
|\ \ | |/
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-211-0/+1
* | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architecturesPetri Lehtinen2012-02-211-6/+2
* | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-203-110/+38
|\ \ | |/
| * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-203-108/+37
* | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().Antoine Pitrou2012-02-151-9/+14
* | Issue #13015: Fix a possible reference leak in defaultdict.__repr__.Antoine Pitrou2012-02-151-1/+3
* | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a Pr...Petri Lehtinen2012-02-062-10/+20
* | Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-021-1/+3
* | sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-012-8/+9
* | Fix zip_import.c's read_directory() to use appropriate types for the valuesGregory P. Smith2012-01-301-4/+5
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-22/+11
* | Issue #13806: The size check in audioop decompression functions was too stric...Antoine Pitrou2012-01-281-3/+3
* | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...Antoine Pitrou2012-01-271-2/+4
|\ \ | |/
| * Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...Antoine Pitrou2012-01-271-1/+2
* | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs.Meador Inge2012-01-261-1/+1
* | merge headsBenjamin Peterson2012-01-241-11/+0
|\ \
| * | Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-11/+0
* | | fix declaration styleBenjamin Peterson2012-01-231-24/+31
|/ /
* | Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix.Gregory P. Smith2012-01-221-9/+47
* | Another issue #8052 bugfix (related to previous commit).Gregory P. Smith2012-01-211-4/+2
* | Bugfix for issue #8052 fix on *BSD variants.Gregory P. Smith2012-01-211-9/+13
* | Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-211-35/+258
* | Avoid the compiler warning about the unused return value.Gregory P. Smith2012-01-211-6/+9
* | Fix the _io module leaking references when a sub-interpreter is created.Antoine Pitrou2012-01-181-48/+36
* | #13665: s/string/bytes/ in error message.Ezio Melotti2012-01-181-1/+1
* | Test running of code in a sub-interpreterAntoine Pitrou2012-01-171-0/+27
* | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch byCharles-François Natali2012-01-021-8/+21
* | Don't redefine _GNU_SOURCE if it's already defined.Ross Lagerwall2011-12-221-2/+2
* | Issue #11006: Don't issue low level warning in subprocess when pipe2() fails.Ross Lagerwall2011-12-221-6/+0
* | Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-181-3/+5
* | Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-1/+2
* | Issue #10951: Fix a compiler warning in timemodule.cVictor Stinner2011-12-171-0/+4
* | main() now displays an error message before exiting if a command line argumentVictor Stinner2011-12-161-1/+5
* | Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-165-11/+27