summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Merge 3.2Éric Araujo2011-06-011-1/+1
|\
| * Branch mergeÉric Araujo2011-06-011-1/+1
| |\
| | * Fix error message to use the Python name instead of the C nameÉric Araujo2011-05-311-1/+1
| * | merge 3.1Benjamin Peterson2011-06-011-1/+1
| |\ \
| | * | return NULL on errorBenjamin Peterson2011-06-011-1/+1
* | | | merge 3.2Benjamin Peterson2011-06-011-0/+2
|\ \ \ \ | |/ / /
| * | | be extra careful with a borrowed reference when the GIL could be released (cl...Benjamin Peterson2011-06-011-0/+2
* | | | remove __version__s dependent on subversion keyword expansion (closes #12221)Benjamin Peterson2011-06-011-5/+0
* | | | merge 3.2 (#12221)Benjamin Peterson2011-06-011-21/+5
|\ \ \ \ | |/ / /
| * | | merge 3.1 (#12221)Benjamin Peterson2011-06-011-21/+5
| |\ \ \ | | |/ / | | | / | | |/ | |/|
| | * simply use the Python version for pyexpat.__version__ #12221Benjamin Peterson2011-05-311-21/+5
| * | Issue #12090: backport 79fcd71d0356Stefan Krah2011-05-251-0/+6
* | | Close #12229: Remove an unused argument of _bufferedreader_peek_unlocked(),Victor Stinner2011-05-311-3/+3
* | | Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) callsVictor Stinner2011-05-301-4/+10
* | | Issue #12196: Add pipe2() to the os module.Charles-François Natali2011-05-291-0/+28
* | | _posixsubprocess.c: don't redefine _GNU_SOURCE if it's already definedVictor Stinner2011-05-261-2/+2
* | | socket.sendto(): exit directly after setting the errorVictor Stinner2011-05-261-4/+5
* | | zipimport: initialize fullpath to NULLVictor Stinner2011-05-261-1/+1
* | | Remove useless assignmentsVictor Stinner2011-05-261-5/+4
* | | Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available.Victor Stinner2011-05-253-11/+40
* | | Issue #12175: FileIO.readall() now only reads the file position and size once.Victor Stinner2011-05-251-7/+30
* | | (Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read()Victor Stinner2011-05-251-0/+8
|\ \ \ | |/ /
| * | (Merge 3.1) Issue #12175: RawIOBase.readall() now returns None if read()Victor Stinner2011-05-251-0/+8
| |\ \ | | |/
| | * Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-0/+8
* | | (Merge 3.2) Issue #12175: FileIO.readall() now raises a ValueError instead ofVictor Stinner2011-05-251-0/+2
|\ \ \ | |/ /
| * | (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead ofVictor Stinner2011-05-251-0/+2
| |\ \ | | |/
| | * Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError ifVictor Stinner2011-05-251-0/+2
* | | Fast path for IncrementalNewlineDecoder.decode() in io.TextIOWrapper.read(-1)Victor Stinner2011-05-251-2/+7
* | | Issue #8407: Fix the signal handler of the signal module: if it is calledVictor Stinner2011-05-251-4/+5
* | | (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs atVictor Stinner2011-05-241-4/+4
|\ \ \ | |/ /
| * | (Merge 3.1) Issue #12100: Don't reset incremental encoders of CJK codecs atVictor Stinner2011-05-241-4/+4
| |\ \ | | |/
| | * Issue #12100: Don't reset incremental encoders of CJK codecs at each call toVictor Stinner2011-05-241-4/+4
* | | Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the sslVictor Stinner2011-05-241-0/+67
* | | Issue #6501: os.device_encoding() returns None on Windows if the applicationVictor Stinner2011-05-231-10/+13
* | | Close #12153: faulthandler, mark stack_overflow() as staticVictor Stinner2011-05-231-1/+1
* | | Issue #12105: Add O_CLOEXEC to the os module.Charles-François Natali2011-05-221-0/+3
* | | avoid a compiler warning. the compiler doesn't know that the staticGregory P. Smith2011-05-211-1/+1
* | | Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex()Charles-François Natali2011-05-201-31/+30
* | | (Merge 3.2) Issue #12124: zipimport doesn't keep a reference toVictor Stinner2011-05-191-24/+23
|\ \ \ | |/ /
| * | (Merge 3.1) Issue #12124: zipimport doesn't keep a reference toVictor Stinner2011-05-191-24/+23
| |\ \ | | |/
| | * Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-191-24/+23
| | * Issue #10756: atexit normalizes the exception before displaying it. Patch byVictor Stinner2011-05-151-0/+1
* | | issue #1746656: Fix for OS X. configure and #include changes so that the socketGregory P. Smith2011-05-151-0/+8
* | | Fix _socket compilation failures on non-Linux buildbots (cf. issue #1746656).Nadeem Vawda2011-05-151-1/+4
* | | (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in theVictor Stinner2011-05-151-3/+3
|\ \ \ | |/ /
| * | (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in theVictor Stinner2011-05-151-3/+3
| |\ \ | | |/
| | * Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module.Victor Stinner2011-05-151-3/+3
* | | Issue #1746656: Add if_nameindex, if_nametoindex, if_indextonameGregory P. Smith2011-05-151-0/+110
* | | Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean.Nadeem Vawda2011-05-141-14/+23
|\ \ \ | |/ /
| * | Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean.Nadeem Vawda2011-05-141-14/+23
| |\ \ | | |/