/external/python/cpython3/Lib/test/libregrtest/ |
save_env.py | 60 'logging._handlers', 'logging._handlerList', 'sys.gettrace', 166 # _handlerList is a list of weakrefs to handlers 167 return id(logging._handlerList), logging._handlerList, logging._handlerList[:]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/ |
__init__.py | 614 _handlerList = [] # added to allow handlers to be removed in reverse of order initialized
626 if wr in _handlerList:
627 _handlerList.remove(wr)
637 _handlerList.append(weakref.ref(handler, _removeHandlerRef))
659 # Add the handler to the global _handlerList (for cleanup on shutdown)
[all...] |
config.py | 76 del logging._handlerList[:]
544 del logging._handlerList[:]
[all...] |
/external/python/cpython2/Lib/logging/ |
__init__.py | 627 _handlerList = [] # added to allow handlers to be removed in reverse of order initialized 637 acquire, release, handlers = _acquireLock, _releaseLock, _handlerList 659 _handlerList.append(weakref.ref(handler, _removeHandlerRef)) 681 # Add the handler to the global _handlerList (for cleanup on shutdown) [all...] |
config.py | 83 del logging._handlerList[:] 541 del logging._handlerList[:] [all...] |
/external/python/cpython3/Lib/logging/ |
__init__.py | 775 _handlerList = [] # added to allow handlers to be removed in reverse of order initialized 785 acquire, release, handlers = _acquireLock, _releaseLock, _handlerList 800 _handlerList.append(weakref.ref(handler, _removeHandlerRef)) 822 # Add the handler to the global _handlerList (for cleanup on shutdown) [all...] |
config.py | 272 logging.shutdown(logging._handlerList[:]) 273 del logging._handlerList[:] [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_logging.py | 66 self.saved_handler_list = logging._handlerList[:]
104 logging._handlerList[:] = self.saved_handler_list
[all...] |
/external/python/cpython2/Lib/test/ |
test_logging.py | 66 self.saved_handler_list = logging._handlerList[:] 104 logging._handlerList[:] = self.saved_handler_list [all...] |
/external/python/cpython3/Lib/test/ |
test_logging.py | 86 self.saved_handler_list = logging._handlerList[:] 137 logging._handlerList[:] = self.saved_handler_list [all...] |