Commit 83f1ea66 authored by Stefan Behnel's avatar Stefan Behnel

comment

parent 6f9ac4da
...@@ -1068,8 +1068,10 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform): ...@@ -1068,8 +1068,10 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
# different types - may or may not lead to an error at runtime # different types - may or may not lead to an error at runtime
return node return node
# FIXME: we could potentially look up the actual tp_new C method # FIXME: we could potentially look up the actual tp_new C
# of the extension type and call that instead of the generic slot # method of the extension type and call that instead of the
# generic slot. That would also allow us to pass parameters
# efficiently.
if not type_arg.type_entry: if not type_arg.type_entry:
# arbitrary variable, needs a None check for safety # arbitrary variable, needs a None check for safety
......
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