summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing/connection.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge 68768 to maintJesse Noller2009-03-301-1/+1
|
* #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not forAmaury Forgeot d'Arc2008-09-101-3/+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.
* 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*.
* Submit fix for issue3393: Memory corruption in multiprocessing moduleJesse Noller2008-08-011-10/+0
|
* add the multiprocessing package to fulfill PEP 371Benjamin Peterson2008-06-111-0/+515