Author: Antonio Cuni <anto.c...@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): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit