diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-30 01:42:49 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-31 00:35:56 +0200 |
commit | 98c4bc3facff901a38cdbc2df99ee5da17ba3f2e (patch) | |
tree | 0137a13fff24444b9114f8ab8c53ed794a0d70f7 /py/qstrdefs.h | |
parent | 32bade19d952c23c2fd499050abb17cb80dc7559 (diff) | |
download | micropython-98c4bc3facff901a38cdbc2df99ee5da17ba3f2e.tar.gz micropython-98c4bc3facff901a38cdbc2df99ee5da17ba3f2e.zip |
py: Add MICROPY_PY_ALL_SPECIAL_METHODS and __iadd__ special method under it.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 23c25072d9..ffb2bf0321 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -75,6 +75,9 @@ Q(__eq__) Q(__le__) Q(__ge__) Q(__reversed__) +#if MICROPY_PY_ALL_SPECIAL_METHODS +Q(__iadd__) +#endif Q(micropython) Q(bytecode) |