Author: Matti Picus <[email protected]>
Branch: unicode-utf8-py3
Changeset: r95524:8968b3201bcd
Date: 2018-12-24 12:28 +0200
http://bitbucket.org/pypy/pypy/changeset/8968b3201bcd/

Log:    uncomment passing test

diff --git a/pypy/interpreter/test/test_argument.py 
b/pypy/interpreter/test/test_argument.py
--- a/pypy/interpreter/test/test_argument.py
+++ b/pypy/interpreter/test/test_argument.py
@@ -837,7 +837,6 @@
 
 
     def test_unicode_keywords(self):
-        """
         def f(**kwargs):
             assert kwargs["&#32654;"] == 42
         f(**{"&#32654;" : 42})
@@ -845,7 +844,6 @@
         def f(x): pass
         e = raises(TypeError, "f(**{'&#252;' : 19})")
         assert e.value.args[0] == "f() got an unexpected keyword argument 
'&#252;'"
-        """
 
     def test_starstarargs_dict_subclass(self):
         def f(**kwargs):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to