diff options
author | Damien George <damien@micropython.org> | 2024-02-21 11:36:53 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-02-21 11:42:35 +1100 |
commit | 27670729a5ef341a75d90e34b6979e6b0671e0f3 (patch) | |
tree | bfff3aa1ac4cd8cfb7cdeb3bc41b9ecb2fd65459 /py | |
parent | 3deeabe6e87d893196227b41ca997d78783ab14c (diff) | |
download | micropython-27670729a5ef341a75d90e34b6979e6b0671e0f3.tar.gz micropython-27670729a5ef341a75d90e34b6979e6b0671e0f3.zip |
py/compile: Remove TODO about name mangling.
This TODO is now covered by the tests/cpydiff/core_class_name_mangling.py
test.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/compile.c b/py/compile.c index 8246a9241c..fe7ad6e13c 100644 --- a/py/compile.c +++ b/py/compile.c @@ -41,8 +41,6 @@ #if MICROPY_ENABLE_COMPILER -// TODO need to mangle __attr names - #define INVALID_LABEL (0xffff) typedef enum { |