Skip to content
Snippets Groups Projects
Commit 6a1abb33 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix superclass invocations in TemporaryToSubstChanger

parent bb385805
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ class TemporaryToSubstChanger(ExpandingIdentityMapper):
if result is not None:
return result
return super(ExpandingIdentityMapper, self).map_variable(
return super(TemporaryToSubstChanger, self).map_variable(
expr, expn_state)
def map_subscript(self, expr, expn_state):
......@@ -238,7 +238,7 @@ class TemporaryToSubstChanger(ExpandingIdentityMapper):
if result is not None:
return result
return super(ExpandingIdentityMapper, self).map_variable(
return super(TemporaryToSubstChanger, self).map_subscript(
expr, expn_state)
def transform_access(self, index, expn_state):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment