Files
python-uncompyle6/test/simple_source/bug_pypy37/01_callback.py
2021-11-23 07:31:37 -05:00

22 lines
461 B
Python

"""This program is self-checking!"""
class C:
def sort(self, l, reverse, key_fn):
# PyPy example of CALL_METHOD_KW 2
# 2 keyword arguments and no positional arguments
return l.sort(reverse=reverse, key=key_fn)
def lcase(s):
return s.lower()
x = C()
l = ["xyz", "ABC"]
# An PyPy example of CALL_METHOD_KW 3
# 2 keyword arguments and one positional argument
x.sort(l, reverse=False, key_fn=lcase)
assert l == ["ABC", "xyz"]