Home | History | Annotate | Download | only in python2.7

Lines Matching defs:threading

389 # is not available, use threading.currentThread() which is slower but will
391 # mock threading object with threading.local() returning the module namespace.
394 import threading
401 threading = MockThreading()
405 threading.local
411 if hasattr(threading.currentThread(), '__decimal_context__'):
412 del threading.currentThread().__decimal_context__
419 threading.currentThread().__decimal_context__ = context
429 return threading.currentThread().__decimal_context__
432 threading.currentThread().__decimal_context__ = context
437 local = threading.local()
462 del threading, local # Don't contaminate the namespace