Small comment change

This commit is contained in:
rocky
2021-11-23 07:31:37 -05:00
parent 223b9e1d88
commit 2d5249f1d3

View File

@@ -15,7 +15,7 @@ def lcase(s):
x = C() x = C()
l = ["xyz", "ABC"] l = ["xyz", "ABC"]
# Another PyPy example of CALL_METHOD_KW 2 # An PyPy example of CALL_METHOD_KW 3
# 2 keyword arguments and one positional argument # 2 keyword arguments and one positional argument
x.sort(l, reverse=False, key_fn=lcase) x.sort(l, reverse=False, key_fn=lcase)
assert l == ["ABC", "xyz"] assert l == ["ABC", "xyz"]