pre = dict.get("%s_pre" % m)
post = dict.get("%s_post" % m)
if pre or post:
- dict[k] = cls.make_eiffel_method(dict[m], pre, post)
+ dict[m] = cls.make_eiffel_method(dict[m], pre, post)
class EiffelMetaClass1(EiffelBaseMetaClass):
# an implementation of the "eiffel" meta class that uses nested functions
Tools/Demos
-----------
+- Issue #18448: Fix a typo in Demo/newmetaclasses/Eiffel.py.
+
- Issue #12990: The "Python Launcher" on OSX could not launch python scripts
that have paths that include wide characters.