summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun_code_micropython.py.exp
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-01-20 22:23:48 +1100
committerDamien George <damien@micropython.org>2025-02-11 16:51:50 +1100
commitceb8ba60b4fea0c32e4977d0e45d5c0203b27b34 (patch)
tree9c100e265c53509822ecc08155545701a370db6f /tests/basics/fun_code_micropython.py.exp
parent62e821ccb82fd8362a8198ad59ccb51b8a5c441e (diff)
downloadmicropython-ceb8ba60b4fea0c32e4977d0e45d5c0203b27b34.tar.gz
micropython-ceb8ba60b4fea0c32e4977d0e45d5c0203b27b34.zip
py/objfun: Implement function.__code__ and function constructor.
This allows retrieving the code object of a function using `function.__code__`, and then reconstructing a function from a code object using `FunctionType(code_object)`. This feature is controlled by `MICROPY_PY_FUNCTION_ATTRS_CODE` and is enabled at the full-features level. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/basics/fun_code_micropython.py.exp')
-rw-r--r--tests/basics/fun_code_micropython.py.exp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/fun_code_micropython.py.exp b/tests/basics/fun_code_micropython.py.exp
new file mode 100644
index 0000000000..d169edffb4
--- /dev/null
+++ b/tests/basics/fun_code_micropython.py.exp
@@ -0,0 +1 @@
+AttributeError