summaryrefslogtreecommitdiffstats
path: root/library/tzdata/Asia/Oral
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2013-10-29 00:30:40 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2013-10-29 00:30:40 (GMT)
commit0919b454160e54a2dda768e599a756e68aa883ed (patch)
tree8c6ada34d8f8bf5fb338f163decf2b5b17cb1a14 /library/tzdata/Asia/Oral
parent9f9c9a2bc48662116c0a24f9e96ec85c081e500f (diff)
downloadtcl-unsetThreadData.zip
tcl-unsetThreadData.tar.gz
tcl-unsetThreadData.tar.bz2
Also finalize the condition variables for each notifier thread.unsetThreadData
Diffstat (limited to 'library/tzdata/Asia/Oral')
0 files changed, 0 insertions, 0 deletions
s="hl opt">, item): '''Put an item into the queue without blocking. This is exactly equivalent to `put(item)` and is only provided for compatibility with the Queue class. ''' return self.put(item, block=False) def get_nowait(self): '''Remove and return an item from the queue without blocking. Only get an item if one is immediately available. Otherwise raise the Empty exception. ''' return self.get(block=False) def empty(self): '''Return True if the queue is empty, False otherwise (not reliable!).''' return len(self._queue) == 0 def qsize(self): '''Return the approximate size of the queue (not reliable!).''' return len(self._queue) __class_getitem__ = classmethod(types.GenericAlias) if SimpleQueue is None: SimpleQueue = _PySimpleQueue