[pypy-commit] pypy py3.5: aaaaaaaaa

arigo pypy.commits at gmail.com
Fri Oct 26 05:55:12 EDT 2018


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r95249:78890f8b8979
Date: 2018-10-26 11:54 +0200
http://bitbucket.org/pypy/pypy/changeset/78890f8b8979/

Log:	aaaaaaaaa

diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py
--- a/pypy/module/thread/os_lock.py
+++ b/pypy/module/thread/os_lock.py
@@ -248,7 +248,7 @@
                         "cannot release un-acquired lock")
         self.rlock_count -= 1
         if self.rlock_count == 0:
-            self.rlock_owner == 0
+            self.rlock_owner = 0
             self.lock.release()
 
     def is_owned_w(self, space):


More information about the pypy-commit mailing list