From 2d5249f1d36c9344c7734112a217dbcef99b02a8 Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 23 Nov 2021 07:31:37 -0500 Subject: [PATCH] Small comment change --- test/simple_source/bug_pypy37/01_callback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple_source/bug_pypy37/01_callback.py b/test/simple_source/bug_pypy37/01_callback.py index 56c04e30..9c71702e 100644 --- a/test/simple_source/bug_pypy37/01_callback.py +++ b/test/simple_source/bug_pypy37/01_callback.py @@ -15,7 +15,7 @@ def lcase(s): x = C() 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 x.sort(l, reverse=False, key_fn=lcase) assert l == ["ABC", "xyz"]