Author: Justin Peel <notmuchtot...@gmail.com> Branch: rgc-mem-pressure Changeset: r48180:3d953befd58a Date: 2011-10-17 23:23 -0600 http://bitbucket.org/pypy/pypy/changeset/3d953befd58a/
Log: small fix for semaphores diff --git a/pypy/module/_multiprocessing/interp_semaphore.py b/pypy/module/_multiprocessing/interp_semaphore.py --- a/pypy/module/_multiprocessing/interp_semaphore.py +++ b/pypy/module/_multiprocessing/interp_semaphore.py @@ -311,7 +311,7 @@ rgc.add_memory_pressure(SEM_T_SIZE) return sem - def delete_semaphore(space, handle): + def delete_semaphore(handle): sem_close(handle) def semlock_acquire(self, space, block, w_timeout): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit