Home
last modified time | relevance | path

Searched refs:setprofile (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/
Dtest_sys_setprofile.py9 sys.setprofile(None)
12 sys.setprofile(None)
21 sys.setprofile(fn)
404 sys.setprofile(p.callback)
406 sys.setprofile(None)
Dtest_threading.py848 threading.setprofile(fn)
851 threading.setprofile(old_profile)
/third_party/python/Lib/
Dprofile.py420 sys.setprofile(self.dispatcher)
424 sys.setprofile(None)
430 sys.setprofile(self.dispatcher)
434 sys.setprofile(None)
Dthreading.py58 def setprofile(func): function
1006 _sys.setprofile(_profile_hook)
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst439 sys.settrace(), sys.setprofile() and _lsprof.Profiler.enable() now properly
440 report :c:func:`PySys_Audit` error if "sys.setprofile" or "sys.settrace"
D3.6.5rc1.rst611 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.7.0b1.rst713 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.10.0a3.rst662 :func:`threading.setprofile` respectively. Patch by Mario Corchero.
D3.7.0a1.rst1045 special build: use the :func:`sys.setprofile` function, :mod:`cProfile` or
/third_party/python/Doc/library/
Dthreading.rst160 .. function:: setprofile(func)
165 The *func* will be passed to :func:`sys.setprofile` for each thread, before its
173 Get the profiler function as set by :func:`setprofile`.
Dsys.rst758 Get the profiler function as set by :func:`setprofile`.
1290 .. function:: setprofile(profilefunc)
1312 .. audit-event:: sys.setprofile "" sys.setprofile
Dmultiprocessing.rst1071 :func:`threading.settrace`, :func:`threading.setprofile`,
/third_party/python/Doc/tutorial/
Dmodules.rst328 'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace', 'stderr',
/third_party/python/Doc/whatsnew/
D2.2.rst1061 :func:`sys.setprofile` and :func:`sys.settrace` functions still exist, and have
D3.10.rst1394 :func:`threading.setprofile` respectively.
/third_party/python/Misc/
DHISTORY21465 - The threading module has new functions settrace() and setprofile()
34221 sys: fixed core dumps in settrace() and setprofile()
34421 See sys.settrace() and sys.setprofile(), and "../lib/pdb.doc"