Skip to content
Advertisement

Defining functions dynamically does not work inside class objects?

In my current project, I am constructing functions dynamically by assembling a string, executing this string, then appending the resulting functions to a list. This works well inside a console, even when looped, but strangely does not work when I attempt to do the same thing inside a class object. Do you know why, and how I could get this to work?

The example snippet below is a minimal example. Constructing a function from a string is not an issue inside the main script, but when used inside a class object, the function is no longer assembled and an attempt to append it to a list returns an error.

JavaScript

Advertisement

Answer

fun3 is being defined in the local scope, but self.funlist.append(fun3) is looking for the variable fun3 in the global scope (because there’s no local variable definition visible in the source code of the function).

You can use the locals() function to get a dictionary of the local variables.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement