[pypy-commit] pypy py3k: one more place where to pass unicode to Signature()

antocuni noreply at buildbot.pypy.org
Wed Aug 22 14:36:00 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r56804:bd3326f15584
Date: 2012-08-22 14:35 +0200
http://bitbucket.org/pypy/pypy/changeset/bd3326f15584/

Log:	one more place where to pass unicode to Signature()

diff --git a/pypy/translator/test/test_generator.py b/pypy/translator/test/test_generator.py
--- a/pypy/translator/test/test_generator.py
+++ b/pypy/translator/test/test_generator.py
@@ -111,7 +111,7 @@
             graph.show()
         # XXX how to test directly that the graph is correct?  :-(
         assert len(graph.startblock.inputargs) == 1
-        assert graph.signature == Signature(['entry'])
+        assert graph.signature == Signature([u'entry'])
         assert graph.defaults == ()
 
     def test_tweak_generator_graph(self):


More information about the pypy-commit mailing list