Home
last modified time | relevance | path

Searched refs:code_info (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Ddis.py151 def code_info(x): function
192 print(code_info(co), file=file)
/third_party/python/Lib/test/
Dtest_dis.py867 (dis.code_info, code_info_code_info),
879 self.assertRegex(dis.code_info(x), expected)
892 self.assertRaises(TypeError, dis.code_info, object())
/third_party/python/Doc/library/
Ddis.rst94 code object, like :func:`code_info`.
118 .. function:: code_info(x)
140 This is a convenient shorthand for ``print(code_info(x), file=file)``,
/third_party/python/Doc/whatsnew/
D3.2.rst1938 :func:`~dis.code_info` and :func:`~dis.show_code`. Both provide detailed code
/third_party/python/Misc/
DHISTORY12498 - Issue #9147: Added dis.code_info() which is similar to show_code() but returns