Skip to content

Commit 65d9d27

Browse files
committed
Merged in bugfix/read_array_base (pull request #182)
Bugfix/read array base Approved-by: Jose Rodriguez <boriel@gmail.com>
2 parents a92c6c3 + acd6b4f commit 65d9d27

5 files changed

Lines changed: 1581 additions & 3 deletions

File tree

symbols/arrayaccess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class SymbolARRAYACCESS(SymbolCALL):
3838
Arglist a SymbolARGLIST instance.
3939
"""
4040
def __init__(self, entry, arglist, lineno):
41-
SymbolCALL.__init__(self, entry, arglist, lineno)
41+
super(SymbolARRAYACCESS, self).__init__(entry, arglist, lineno)
4242

4343
@property
4444
def entry(self):

0 commit comments

Comments
 (0)