| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.13] gh-117657: Acquire a critical section around `SemLock.__{enter,exit}__... | Miss Islington (bot) | 2024-05-09 | 1 | -2/+4 |
|
|
* | gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436) | Sam Gross | 2024-04-04 | 1 | -5/+10 |
|
|
* | gh-108765: Python.h no longer includes <sys/time.h> (#108775) | Victor Stinner | 2023-09-02 | 1 | -0/+4 |
|
|
* | gh-107913: Fix possible losses of OSError error codes (GH-107930) | Serhiy Storchaka | 2023-08-26 | 1 | -4/+5 |
|
|
* | gh-106869: Use new PyMemberDef constant names (#106871) | Victor Stinner | 2023-07-25 | 1 | -4/+4 |
|
|
* | bpo-15999: Accept arbitrary values for boolean parameters. (#15609) | Serhiy Storchaka | 2022-12-03 | 1 | -6/+6 |
|
|
* | GH-94382: port multiprocessing static types to heap types (#94336) | Kumar Aditya | 2022-07-20 | 1 | -40/+31 |
|
|
* | GH-94736: Fix _multiprocessing.SemLock subclassing (#94738) | Kumar Aditya | 2022-07-11 | 1 | -4/+2 |
|
|
* | bpo-45847: Fix _multiprocessing on platforms without sem_open (GH-29833) | Christian Heimes | 2021-11-29 | 1 | -0/+4 |
|
|
* | bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) | Victor Stinner | 2020-12-01 | 1 | -1/+1 |
|
|
* | bpo-20175: Convert Modules/_multiprocessing to the Argument Clinic (GH-14245) | Zackery Spytz | 2020-07-12 | 1 | -69/+175 |
|
|
* | bpo-39511: Fix multiprocessing semlock_acquire() (GH-18298) | Victor Stinner | 2020-02-01 | 1 | -10/+11 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -2/+2 |
|
|
* | bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) | Serhiy Storchaka | 2019-03-13 | 1 | -1/+1 |
|
|
* | bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-... | Zackery Spytz | 2018-12-07 | 1 | -3/+6 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) | Serhiy Storchaka | 2018-11-27 | 1 | -2/+2 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -5/+5 |
|
|
* | bpo-31653: Remove deadcode in semlock_acquire() (#4091) | Victor Stinner | 2017-10-23 | 1 | -4/+4 |
|
|
* | bpo-31653: Don't release the GIL if we can acquire a multiprocessing semaphor... | Antoine Pitrou | 2017-10-22 | 1 | -10/+20 |
|
|
* | bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) | Serhiy Storchaka | 2017-04-16 | 1 | -1/+1 |
|
|
* | bpo-6532: Make the thread id an unsigned integer. (#781) | Serhiy Storchaka | 2017-03-23 | 1 | -1/+1 |
|
|
* | Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false | Berker Peksag | 2016-07-23 | 1 | -0/+3 |
|
|
* | Issue #8713: Support alternative start methods in multiprocessing on Unix. | Richard Oudkerk | 2013-08-14 | 1 | -14/+64 |
|
|
* | Replace WaitForMultipleObjects with WaitForMultipleObjectEx, | Martin v. Löwis | 2013-01-25 | 1 | -1/+1 |
|
|
* | Replace WaitForSingleObject with WaitForSingleObjectEx, | Martin v. Löwis | 2013-01-25 | 1 | -2/+2 |
|
|
* | Issue #9586: Merge. | Richard Oudkerk | 2013-01-01 | 1 | -0/+7 |
|\ |
|
| * | Issue #9586: Merge | Richard Oudkerk | 2013-01-01 | 1 | -0/+7 |
| |\ |
|
| | * | Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy. | Richard Oudkerk | 2013-01-01 | 1 | -0/+7 |
|
|
* | | | Get rid of circular import and eliminate unprefixed exported symbols | Richard Oudkerk | 2012-10-07 | 1 | -7/+7 |
|/ / |
|
* | | Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement" | Richard Oudkerk | 2012-04-30 | 1 | -1/+2 |
|
|
* | | Issue #10350: Read and save errno before calling a function which might overw... | Antoine Pitrou | 2011-12-16 | 1 | -1/+3 |
|\ \
| |/ |
|
| * | Issue #10350: Read and save errno before calling a function which might overw... | Antoine Pitrou | 2011-12-16 | 1 | -1/+3 |
|
|
* | | Issue #12328: Under Windows, refactor handling of Ctrl-C events and | Antoine Pitrou | 2011-11-21 | 1 | -32/+20 |
|
|
* | | Remove dead code from _multiprocessing | Antoine Pitrou | 2011-05-09 | 1 | -2/+2 |
|/ |
|
* | Fix compiler warnings about formatting pid_t as an int, by always casting to ... | Georg Brandl | 2010-10-18 | 1 | -1/+1 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -446/+446 |
|
|
* | Merged revisions 70908,70939,71009,71022,71036 via svnmerge from | Benjamin Peterson | 2009-04-05 | 1 | -5/+5 |
|
|
* | merge 70783 to py3k | Jesse Noller | 2009-03-31 | 1 | -1/+1 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-... | Benjamin Peterson | 2008-11-30 | 1 | -1/+1 |
|
|
* | Merged revisions 64104,64117 via svnmerge from | Benjamin Peterson | 2008-06-11 | 1 | -0/+625 |
|
|