You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently function attributes of class objects are not bound.
Current method:
Class source code is used to make my FunctionType which is then passed to my build_class method. The build class method executes the class source and recovers the locals. It then constructs new class source code using those locals.
Ideas:
Temporarily have my make_function methof return regular function and see it that works, implying that my build_class method works.
Try deriving from types.FunctionType for functions or wrapping my FunctionType in a regular function type.
The text was updated successfully, but these errors were encountered:
Currently function attributes of class objects are not bound.
Current method:
Class source code is used to make my FunctionType which is then passed to my build_class method. The build class method executes the class source and recovers the locals. It then constructs new class source code using those locals.
Ideas:
Temporarily have my make_function methof return regular function and see it that works, implying that my build_class method works.
Try deriving from types.FunctionType for functions or wrapping my FunctionType in a regular function type.
The text was updated successfully, but these errors were encountered: