Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7ddd9 commit 6a98fe9Copy full SHA for 6a98fe9
2 files changed
Misc/NEWS
@@ -229,6 +229,8 @@ Documentation
229
Tools/Demos
230
-----------
231
232
+- Issue #18448: Fix a typo in Tools/demo/eiffel.py.
233
+
234
- Issue #18457: Fixed saving of formulas and complex numbers in
235
Tools/demo/ss1.py.
236
Tools/demo/eiffel.py
@@ -36,7 +36,7 @@ def convert_methods(cls, dict):
36
pre = dict.get("%s_pre" % m)
37
post = dict.get("%s_post" % m)
38
if pre or post:
39
- dict[k] = cls.make_eiffel_method(dict[m], pre, post)
+ dict[m] = cls.make_eiffel_method(dict[m], pre, post)
40
41
42
class EiffelMetaClass1(EiffelBaseMetaClass):
0 commit comments