Skip to content

Commit

Permalink
append
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille committed Aug 8, 2024
1 parent 6cd4438 commit 0a629ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pythran/transformations/normalize_method_calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class NormalizeMethodCalls(Transformation):
>>> pm = passmanager.PassManager("test")
>>> _, node = pm.apply(NormalizeMethodCalls, node)
>>> print(pm.dump(backend.Python, node))
builtins.list.append([], 12)
import __dispatch__ as __pythran_import___dispatch__
__pythran_import___dispatch__.append([], 12)
'''

def __init__(self):
Expand Down

0 comments on commit 0a629ff

Please sign in to comment.