Lines Matching refs:code
209 # part of the code. The code generate for the true
1631 # There is a separate code path when the number of lines > (1 << 15).
1804 self.code = function.__code__
1808 self.firstLine = None if decorated else self.code.co_firstlineno
1818 if (self.firstLine is None and frame.f_code == self.code and
1824 while f is not None and f.f_code != self.code:
1899 from one place to another in the following code.
1911 from one place to another in the following asynchronous code.
2608 code = compile("""
2615 __code__ = code
2619 exec(code, namespace)
2818 code = "def f():\n (" + "y,\n "*300 + ") = range(300)"
2819 exec(code, ns)
2824 code = """if 1:
2831 exec(code, ns)