OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_exithandlers
(Results
1 - 6
of
6
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
atexit.py
12
_exithandlers
= []
variable
16
_exithandlers
is traversed in reverse order so functions are executed
21
while
_exithandlers
:
22
func, targs, kargs =
_exithandlers
.pop()
46
_exithandlers
.append((func, targs, kargs))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
atexit.py
12
_exithandlers
= []
variable
16
_exithandlers
is traversed in reverse order so functions are executed
21
while
_exithandlers
:
22
func, targs, kargs =
_exithandlers
.pop()
46
_exithandlers
.append((func, targs, kargs))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_atexit.py
14
self.save_handlers = atexit.
_exithandlers
15
atexit.
_exithandlers
= []
20
atexit.
_exithandlers
= self.save_handlers
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_atexit.py
14
self.save_handlers = atexit.
_exithandlers
15
atexit.
_exithandlers
= []
20
atexit.
_exithandlers
= self.save_handlers
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
util.py
104
atexit.
_exithandlers
.remove((_exit_function, (), {}))
105
atexit.
_exithandlers
.append((_exit_function, (), {}))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
util.py
104
atexit.
_exithandlers
.remove((_exit_function, (), {}))
105
atexit.
_exithandlers
.append((_exit_function, (), {}))
Completed in 461 milliseconds