Files
python-uncompyle6/test/simple_source/bug_pypy37/01_callback.py
rocky 2ed211e0d4 Some PyPY 3.7 support
* Handle CALL_METHOD_KW
* adjust PyPY 3.7 assert stmts
* misc administrivia
2021-11-21 14:04:34 -05:00

11 lines
140 B
Python

"""This program is self-checking!"""
def lcase(s):
return s.lower()
l = ["xyz", "ABC"]
l.sort(key=lcase)
assert l == ["ABC", "xyz"]