summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing
Commit message (Collapse)AuthorAgeFilesLines
* issue 5002: fix windows warning that I intro'ed with r68768Jesse Noller2009-01-201-3/+1
|
* Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check ↵Jesse Noller2009-01-192-2/+14
| | | | handle
* Move definition int sval into branch of ifdef where it is used.Jeremy Hylton2008-11-281-1/+1
| | | | Otherwise, you get a warning about an undefined variable.
* Issue #4204: Fixed module build errors on FreeBSD 4.Martin v. Löwis2008-11-041-0/+2
|
* #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not forAmaury Forgeot d'Arc2008-09-102-4/+3
| | | | | | | | | PyString_FromFormat which has an independent implementation, and uses "%zd". This makes a difference on win64, where printf needs "%Id" to display 64bit values. For example, queue.__repr__ was incorrect. Reviewed by Martin von Loewis.
* Fix issue 3110 - solaris compilation of multiprocessing fails, reviewed by ↵Jesse Noller2008-09-031-0/+11
| | | | pitrou
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-6/+16
| | | | | | | by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*.
* fix compile error on WindowsBenjamin Peterson2008-08-021-1/+1
|
* Submit fix for issue3393: Memory corruption in multiprocessing moduleJesse Noller2008-08-013-19/+28
|
* convert multiprocessing to unix line endingsBenjamin Peterson2008-06-134-870/+870
|
* Typo.Georg Brandl2008-06-131-1/+1
|
* #3095: don't leak values from Py_BuildValue.Georg Brandl2008-06-131-6/+9
|
* add the multiprocessing package to fulfill PEP 371Benjamin Peterson2008-06-117-0/+2187