Commit 021cf638 authored by gsamain's avatar gsamain

Update with lock comments (read/write lock, not mutex anymore)

parent a9e62aa3
......@@ -8196,9 +8196,9 @@ class EnsureGILNode(GILExitNode):
code.put_ensure_gil(declare_gilstate=False)
class LockCypclassNode(StatNode):
# 'with locked [cypclass object]' or 'with unlocked [cypclass object]' statement
# 'with rlocked / wlocked [cypclass object]' or 'with unlocked [cypclass object]' statement
#
# state string 'locked' or 'unlocked'
# state string 'rlocked' or 'wlocked' or 'unlocked'
# obj ExprNode the (un)locked object
# body StatNode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment