| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #18458: Prevent crashes with newer versions of libedit. Its readline | Ned Deily | 2013-09-06 | 1 | -12/+22 |
| | | | | | | emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren. | ||||
| * | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in | Serhiy Storchaka | 2013-09-05 | 1 | -14/+23 |
| |\ | | | | | | | the _sre moduel. | ||||
| | * | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in | Serhiy Storchaka | 2013-09-05 | 1 | -14/+23 |
| | | | | | | | | | the _sre moduel. | ||||
| * | | Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in ↵ | Christian Heimes | 2013-09-05 | 1 | -1/+1 |
| |\ \ | |/ | | | | | GEN_EMAIL/GEN_URI/GEN_DNS case | ||||
| | * | Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in ↵ | Christian Heimes | 2013-09-05 | 1 | -1/+1 |
| | | | | | | | | | GEN_EMAIL/GEN_URI/GEN_DNS case | ||||
| * | | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, | Victor Stinner | 2013-09-04 | 1 | -1/+1 |
| |\ \ | |/ | | | | | don't cast 64-bit pointer to long (32 bits). | ||||
| | * | Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast | Victor Stinner | 2013-09-04 | 1 | -1/+1 |
| | | | | | | | | | 64-bit pointer to long (32 bits). | ||||
| * | | Issue #18876: The FileIO.mode attribute now better reflects the actual mode ↵ | Antoine Pitrou | 2013-09-04 | 1 | -9/+13 |
| |\ \ | |/ | | | | | | | | | under which the file was opened. Patch by Erik Bray. | ||||
| | * | Issue #18876: The FileIO.mode attribute now better reflects the actual mode ↵ | Antoine Pitrou | 2013-09-04 | 1 | -10/+13 |
| | | | | | | | | | | | | | under which the file was opened. Patch by Erik Bray. | ||||
| * | | Merge 3.3 into default. | Tim Peters | 2013-09-03 | 1 | -16/+12 |
| |\ \ | |/ | | | | | | | | | cwr_next(): move invariants out of loops. This simplifies and clarifies the code, and gives a small speedup. | ||||
| | * | cwr_next(): move invariants out of loops. | Tim Peters | 2013-09-03 | 1 | -16/+12 |
| | | | | | | | | | This simplifies and clarifies the code, and gives a small speedup. | ||||
| * | | Issue #18912: Fix indentation in docstring | Eli Bendersky | 2013-09-03 | 1 | -4/+4 |
| |\ \ | |/ | | | | | Contributed by Jeroen Van Goey | ||||
| | * | Issue #18912: Fix indentation in docstring | Eli Bendersky | 2013-09-03 | 1 | -4/+4 |
| | | | | | | | | | Contributed by Jeroen Van Goey | ||||
| * | | Use INADDR_BROADCAST instead of hard-coded value (it's part of POSIX and | Charles-François Natali | 2013-08-31 | 1 | -1/+1 |
| | | | | | | | | | already appears without #ifdef a couple lines above). | ||||
| * | | select.epoll.fromfd(fd) must be not change the inheritable flag of the file | Victor Stinner | 2013-08-28 | 1 | -1/+1 |
| | | | | | | | | | descriptor | ||||
| * | | Get rid of signed/unsigned comparaison in _sre.c | Victor Stinner | 2013-08-28 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | Fix compilation warnings on Windows (Visual C++) like: "_sre.c(3121): warning C4018: '>' : signed/unsigned mismatch". _validate_outer() ensures that groups >= 0, so _validate_inner() can cast groups to size_t. | ||||
| * | | _datetimemodule.c: fix the compilation warning "conversion from 'double' to | Victor Stinner | 2013-08-27 | 1 | -1/+1 |
| | | | | | | | | | | | 'long', possible loss of data" in delta_new(), use an explicit cast from double to long | ||||
| * | | fix a compilation warning in posix_openpty() on "PPC64 AIX 3.x" buildbot | Victor Stinner | 2013-08-27 | 1 | -0/+2 |
| | | | |||||
| * | | (Merge 3.3) Fix compilation of the _sqlite module if threads are disabled | Victor Stinner | 2013-08-27 | 1 | -0/+3 |
| |\ \ | |/ | |||||
| | * | Fix compilation of the _sqlite module if threads are disabled | Victor Stinner | 2013-08-27 | 1 | -0/+3 |
| | | | |||||
| * | | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 11 | -196/+635 |
| | | | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable(). | ||||
| * | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 8 | -29/+28 |
| |\ \ | |/ | | | | | error messages and comments. | ||||
| | * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 8 | -29/+28 |
| | | | | | | | | | error messages and comments. | ||||
| * | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | 2 | -22/+37 |
| | | | | | | | | | filenames anymore on Windows. | ||||
| * | | #18803: merge with 3.3. | Ezio Melotti | 2013-08-25 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | #18803: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-25 | 1 | -1/+1 |
| | | | |||||
| * | | Merge. | Charles-François Natali | 2013-08-25 | 1 | -11/+12 |
| |\ \ | |/ | |||||
| | * | Merge. | Charles-François Natali | 2013-08-25 | 1 | -11/+12 |
| | |\ | |||||
| | | * | Issue #18763: subprocess: The file descriptors are now closed after calling the | Charles-François Natali | 2013-08-25 | 1 | -11/+12 |
| | | | | | | | | | | | | | preexec_fn callback, which may open file descriptors. | ||||
| * | | | Issue #11973: Fix a problem in kevent. The flags and fflags fields are now | Christian Heimes | 2013-08-25 | 1 | -1/+1 |
| |\ \ \ | |/ / | | | | | | | properly handled as unsigned. | ||||
| | * | | Issue #11973: Fix a problem in kevent. The flags and fflags fields are now | Christian Heimes | 2013-08-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | properly handled as unsigned. | ||||
| * | | | Issue #18747: Fix spelling errors in my commit message and comments, | Christian Heimes | 2013-08-25 | 1 | -2/+2 |
| |\ \ \ | |/ / | | | | | | | thanks to Vajrasky Kok for proof-reading. | ||||
| | * | | Issue #18747: Fix spelling errors in my commit message and comments, | Christian Heimes | 2013-08-25 | 1 | -2/+2 |
| | |/ | | | | | | | thanks to Vajrasky Kok for proof-reading. | ||||
| * | | Fix compiler warning on Windows. | Richard Oudkerk | 2013-08-24 | 1 | -1/+1 |
| | | | |||||
| * | | Use consistent style for else if / else | Eli Bendersky | 2013-08-24 | 1 | -2/+5 |
| | | | |||||
| * | | remove support for compiling on systems without getcwd() | Benjamin Peterson | 2013-08-24 | 1 | -8/+0 |
| | | | | | | | | | | | Do we need a fallback implementation of getcwd() from 1991 that claims to support "really old Unix systems"? I don't think so. | ||||
| * | | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -12/+53 |
| |\ \ | |/ | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
| | * | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -12/+53 |
| | | | | | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
| * | | Fix devpoll_dealloc(). | Richard Oudkerk | 2013-08-22 | 1 | -1/+1 |
| | | | |||||
| * | | Move definition of devpoll_internal_close() before devpoll_close(). | Richard Oudkerk | 2013-08-22 | 1 | -15/+15 |
| | | | |||||
| * | | Fix compilation of select module on Solaris. | Richard Oudkerk | 2013-08-22 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #18747: Use a parent atfork handler instead of a child atfork handler. | Christian Heimes | 2013-08-22 | 1 | -12/+9 |
| |\ \ | |/ | | | | | fork() is suppose to be async-signal safe but the handler calls unsafe functions. A parent handler mitigates the issue. | ||||
| | * | Issue #18747: Use a parent atfork handler instead of a child atfork handler. | Christian Heimes | 2013-08-22 | 1 | -12/+9 |
| | | | | | | | | | fork() is suppose to be async-signal safe but the handler calls unsafe functions. A parent handler mitigates the issue. | ||||
| * | | Close #18794: Add a fileno() method and a closed attribute to select.devpoll | Victor Stinner | 2013-08-21 | 1 | -7/+85 |
| | | | | | | | | | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue. | ||||
| * | | Issue #17119: Fixed integer overflows when processing large strings and tuples | Serhiy Storchaka | 2013-08-21 | 1 | -6/+23 |
| |\ \ | |/ | | | | | in the tkinter module. | ||||
| | * | Issue #17119: Fixed integer overflows when processing large strings and tuples | Serhiy Storchaka | 2013-08-21 | 1 | -9/+30 |
| | | | | | | | | | in the tkinter module. | ||||
| * | | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork. | Christian Heimes | 2013-08-21 | 1 | -0/+72 |
| |\ \ | |/ | | | | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data. | ||||
| | * | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork. | Christian Heimes | 2013-08-21 | 1 | -0/+72 |
| | | | | | | | | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data. | ||||
| * | | Issue #8865: Concurrent invocation of select.poll.poll() now raises a | Serhiy Storchaka | 2013-08-20 | 1 | -0/+13 |
| |\ \ | |/ | | | | | RuntimeError exception. Patch by Christian Schubert. | ||||
| | * | Issue #8865: Concurrent invocation of select.poll.poll() now raises a | Serhiy Storchaka | 2013-08-20 | 1 | -0/+13 |
| | | | | | | | | | RuntimeError exception. Patch by Christian Schubert. | ||||
