summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-30 23:38:36 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-30 23:38:36 (GMT)
commitf0d21c751b306e3192ddc81dfd28e74b8816e57b (patch)
tree7d259f79cfb33959ecc3f799b5e4bd1cd3d9dab6 /Modules
parentd5ac4447bae5a1cb03b8b4ac6cd1d061de03493c (diff)
downloadcpython-f0d21c751b306e3192ddc81dfd28e74b8816e57b.zip
cpython-f0d21c751b306e3192ddc81dfd28e74b8816e57b.tar.gz
cpython-f0d21c751b306e3192ddc81dfd28e74b8816e57b.tar.bz2
merge 70783 back to 26maint
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_multiprocessing/semaphore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/semaphore.c b/Modules/_multiprocessing/semaphore.c
index a5ba71e..2c2fb10 100644
--- a/Modules/_multiprocessing/semaphore.c
+++ b/Modules/_multiprocessing/semaphore.c
@@ -546,7 +546,7 @@ static PyMethodDef semlock_methods[] = {
"acquire the semaphore/lock"},
{"release", (PyCFunction)semlock_release, METH_NOARGS,
"release the semaphore/lock"},
- {"__enter__", (PyCFunction)semlock_acquire, METH_VARARGS,
+ {"__enter__", (PyCFunction)semlock_acquire, METH_VARARGS | METH_KEYWORDS,
"enter the semaphore/lock"},
{"__exit__", (PyCFunction)semlock_release, METH_VARARGS,
"exit the semaphore/lock"},