Home
last modified time | relevance | path

Searched refs:getprofile (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_cprofile.py40 self.assertIs(sys.getprofile(), prof)
43 self.assertIs(sys.getprofile(), None)
56 self.assertIs(sys.getprofile(), prof)
59 self.assertIs(sys.getprofile(), None)
Dtest_sys_setprofile.py15 self.assertIsNone(sys.getprofile())
22 self.assertIs(sys.getprofile(), fn)
/external/python/cpython2/Lib/test/
Dtest_sys_setprofile.py16 self.assertIsNone(sys.getprofile())
23 self.assertIs(sys.getprofile(), fn)
Dtest_mhlib.py152 eq(mh.getprofile('Editor'), 'emacs')
153 eq(mh.getprofile('not-set'), None)
/external/python/cpython2/Doc/library/
Dmhlib.rst51 .. method:: MH.getprofile(key)
Dsys.rst472 .. function:: getprofile()
/external/python/cpython2/Lib/
Dmhlib.py106 if path is None: path = self.getprofile('Path')
122 def getprofile(self, key): member in MH
/external/python/cpython3/Doc/tutorial/
Dmodules.rst320 'getfilesystemencodeerrors', 'getfilesystemencoding', 'getprofile',
/external/python/cpython2/Doc/tutorial/
Dmodules.rst316 'getfilesystemencoding', 'getobjects', 'getprofile', 'getrecursionlimit',
/external/python/cpython3/Doc/library/
Dsys.rst722 .. function:: getprofile()
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst4005 added ``sys.getprofile()`` and ``sys.gettrace()``.
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2434 by calling :func:`sys.getprofile` and :func:`sys.gettrace`.
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2438 by calling :func:`sys.getprofile` and :func:`sys.gettrace`.