Commit b71d7063 authored by Chris Toshok's avatar Chris Toshok

expose existance of CodeType, but leave its value as None

parent 50143e43
......@@ -45,6 +45,7 @@ FunctionType = type(_f)
LambdaType = type(lambda: None) # Same as FunctionType
# Pyston change: there is no concept of a "code object" yet:
# CodeType = type(_f.func_code)
CodeType = None
def _g():
yield 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment