summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #4028: Make multiprocessing build on SunOS.Charles-François Natali2011-12-141-1/+1
* Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-13/+45
* Fix docstring typo.Florent Xicluna2011-12-091-1/+1
* Issue #5905: time.strftime() is now using the locale encoding, instead ofVictor Stinner2011-12-091-9/+4
* Issue #13415: Test in configure if unsetenv() has a return value or not.Charles-François Natali2011-11-271-0/+6
* decref correct objectBenjamin Peterson2011-11-231-1/+1
* plug refleakBenjamin Peterson2011-11-231-1/+3
* Issue #13458: Fix a memory leak in the ssl module when decoding a certificate...Antoine Pitrou2011-11-231-0/+1
* Issue #13415: os.unsetenv() doesn't ignore errors anymore.Victor Stinner2011-11-221-17/+11
* Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-2/+49
* Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-32/+46
* Fix few typos.Florent Xicluna2011-11-111-1/+1
* #13379: update Unicode version in unicodedata docstrings and comments.Ezio Melotti2011-11-101-5/+6
* Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.Ross Lagerwall2011-11-041-1/+1
* Issue #12342: Improve _tkinter error message on unencodable characterVictor Stinner2011-11-031-2/+4
* Issue #10570: curses.putp() is now expecting a byte string, instead of aVictor Stinner2011-11-031-1/+2
* Issue #10570: curses.tigetstr() is now expecting a byte string, instead of aVictor Stinner2011-11-021-1/+1
* Closes #2892: preserve iterparse events in case of SyntaxError.Florent Xicluna2011-11-011-15/+23
* Issue #13255: wrong docstrings in array module.Florent Xicluna2011-10-241-4/+4
* 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro i...Senthil Kumaran2011-10-191-1/+1
* Issue #10653: Fix time.strftime() on Windows, check for invalid format stringsVictor Stinner2011-10-161-4/+4
* Issue #10653: On Windows, use strftime() instead of wcsftime() becauseVictor Stinner2011-10-141-0/+5
* Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ...Nadeem Vawda2011-10-132-30/+8
* Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-051-0/+5
* Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-043-6/+6
* Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-041-2/+2
* Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+3
* Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-4/+4
* Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-1/+7
* Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-011-1/+1
* Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-291-0/+1