Add docstrings to reader/writer constants

This commit is contained in:
Joshua Harlow
2015-06-06 18:52:08 -07:00
parent aac10db97a
commit b9a1dae5c5

View File

@@ -110,7 +110,11 @@ class ReaderWriterLock(object):
This can be eventually removed if http://bugs.python.org/issue8800 ever
gets accepted into the python standard threading library...
"""
#: Writer owner type/string constant.
WRITER = 'w'
#: Reader owner type/string constant.
READER = 'r'
@staticmethod