| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #11743: Rewrite multiprocessing connection classes in pure Python. | Antoine Pitrou | 2011-05-09 | 6 | -923/+168 |
|
|
* | Issue #8407: Use an explicit cast for FreeBSD | Victor Stinner | 2011-05-09 | 1 | -1/+1 |
|
|
* | faulthandler: make quiet a gcc 4.6 warning (z was unused) | Victor Stinner | 2011-05-09 | 1 | -2/+5 |
|
|
* | Issue #11888: Use system log2() when available | Victor Stinner | 2011-05-09 | 1 | -0/+4 |
|
|
* | #10811: Fix recursive usage of cursors. Instead of crashing, raise a Programm... | Gerhard Haering | 2011-05-09 | 2 | -10/+20 |
|
|
* | Grammatical fix for a comment for log2, to avoid referring to an *algorithm* ... | Mark Dickinson | 2011-05-09 | 1 | -1/+3 |
|
|
* | Fix cut-and-paste typo in comment: log10 -> log2. | Mark Dickinson | 2011-05-09 | 1 | -1/+1 |
|
|
* | Issue #11888: Add log2 function to math module. Patch written by Mark | Victor Stinner | 2011-05-08 | 1 | -0/+59 |
|
|
* | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-08 | 1 | -1/+7 |
|
|
* | Issue #8407: The signal handler writes the signal number as a single byte | Victor Stinner | 2011-05-08 | 1 | -2/+5 |
|
|
* | Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the | Victor Stinner | 2011-05-07 | 1 | -2/+100 |
|
|
* | #12017: merge with 3.2. | Ezio Melotti | 2011-05-07 | 1 | -2/+13 |
|\ |
|
| * | #12017: merge with 3.1. | Ezio Melotti | 2011-05-07 | 1 | -2/+13 |
| |\ |
|
| | * | #12017: Fix segfault in json.loads() while decoding highly-nested objects usi... | Ezio Melotti | 2011-05-07 | 1 | -2/+13 |
|
|
* | | | faulthandler: dump all threads by default | Victor Stinner | 2011-05-07 | 1 | -6/+6 |
|
|
* | | | faulthandler: save/restore errno in the two signal handlers | Victor Stinner | 2011-05-07 | 1 | -0/+4 |
|
|
* | | | Closes Issue 11916: Add a number of MacOSX specific definitions to the errno ... | Ronald Oussoren | 2011-05-07 | 1 | -0/+55 |
|
|
* | | | Issue #8407: signal.pthread_sigmask() returns a set instead of a list | Victor Stinner | 2011-05-04 | 1 | -26/+35 |
|
|
* | | | Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been | Victor Stinner | 2011-05-03 | 1 | -0/+4 |
|
|
* | | | Removed unused variable | Alexander Belopolsky | 2011-05-02 | 1 | -1/+0 |
|
|
* | | | Issue #11930: Remove year >= 1000 limitation from datetime.strftime. | Alexander Belopolsky | 2011-05-02 | 1 | -25/+0 |
|
|
* | | | merge | Alexander Belopolsky | 2011-05-02 | 1 | -14/+6 |
|\ \ \ |
|
| * | | | cleanup signalmodule.c: use PyModule_AddIntMacro() | Victor Stinner | 2011-05-02 | 1 | -14/+6 |
|
|
* | | | | Issue #11930: Remove deprecated time.accept2dyear. | Alexander Belopolsky | 2011-05-02 | 1 | -54/+1 |
|/ / / |
|
* | | | (Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X | Victor Stinner | 2011-05-01 | 1 | -0/+9 |
|\ \ \
| |/ / |
|
| * | | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X | Victor Stinner | 2011-05-01 | 1 | -0/+9 |
| |\ \
| | |/ |
|
| | * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a | Victor Stinner | 2011-05-01 | 1 | -0/+9 |
|
|
* | | | Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetch | Victor Stinner | 2011-04-30 | 1 | -1/+138 |
|
|
* | | | Issue #11223: Replace threading._info() by sys.thread_info | Victor Stinner | 2011-04-30 | 1 | -13/+0 |
|
|
* | | | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* | Antoine Pitrou | 2011-04-27 | 1 | -0/+1 |
|\ \ \
| |/ / |
|
| * | | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* | Antoine Pitrou | 2011-04-27 | 1 | -0/+1 |
|
|
* | | | Fix compilation of _testembed.c without threads | Victor Stinner | 2011-04-26 | 1 | -0/+6 |
|
|
* | | | Issue #11918: OS/2 and VMS are no more supported because of the lack of | Victor Stinner | 2011-04-26 | 2 | -0/+3 |
|
|
* | | | Issue #10914: Add a minimal embedding test to test_capi. | Antoine Pitrou | 2011-04-25 | 1 | -0/+52 |
|\ \ \
| |/ / |
|
| * | | Issue #10914: Add a minimal embedding test to test_capi. | Antoine Pitrou | 2011-04-25 | 1 | -0/+52 |
|
|
* | | | Issue #11856: Speed up parsing of JSON numbers. | Antoine Pitrou | 2011-04-25 | 1 | -15/+31 |
|
|
* | | | Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the | Victor Stinner | 2011-04-24 | 1 | -0/+6 |
|
|
* | | | Issue #11382: Trivial system calls, such as dup() or pipe(), needn't | Antoine Pitrou | 2011-04-23 | 1 | -14/+0 |
|
|
* | | | Simplify _count_elements() in _collections | Victor Stinner | 2011-04-20 | 1 | -12/+4 |
|
|
* | | | Issue #11223: Add threading._info() function providing informations about the | Victor Stinner | 2011-04-19 | 1 | -7/+17 |
|
|
* | | | faulthandler: don't use sigprocmask() | Victor Stinner | 2011-04-19 | 1 | -5/+1 |
|
|
* | | | os.sendfile(): on Linux if offset parameter is passed as NULL we were erroneo... | Giampaolo Rodola' | 2011-04-19 | 1 | -3/+2 |
|
|
* | | | (Merge 3.2) Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -10/+16 |
|\ \ \
| |/ / |
|
| * | | (Merge 3.1) Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -10/+16 |
| |\ \
| | |/ |
|
| | * | Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -10/+16 |
|
|
* | | | Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor. | Nadeem Vawda | 2011-04-12 | 1 | -9/+24 |
|
|
* | | | Merge with 3.2. | Ezio Melotti | 2011-04-11 | 1 | -1/+0 |
|\ \ \
| |/ / |
|
| * | | Remove unnecessary call to PyErr_Clear. | Ezio Melotti | 2011-04-11 | 1 | -1/+0 |
|
|
* | | | Issue #11757: select.select() now raises ValueError when a negative timeout | Antoine Pitrou | 2011-04-09 | 1 | -0/+5 |
|
|
* | | | Fix nit (make spelling consistent in prototype) | Raymond Hettinger | 2011-04-09 | 1 | -1/+1 |
|
|