Author: Antonio Cuni <anto.c...@gmail.com> Branch: py3k Changeset: r56801:f860431bfa26 Date: 2012-08-22 14:30 +0200 http://bitbucket.org/pypy/pypy/changeset/f860431bfa26/
Log: one more place where to pass unicode to Signature() diff --git a/pypy/annotation/specialize.py b/pypy/annotation/specialize.py --- a/pypy/annotation/specialize.py +++ b/pypy/annotation/specialize.py @@ -37,7 +37,7 @@ newstartblock.operations.append(newtup) newstartblock.closeblock(Link(argscopy, graph.startblock)) graph.startblock = newstartblock - argnames = argnames + ['.star%d' % i for i in range(nb_extra_args)] + argnames = argnames + [u'.star%d' % i for i in range(nb_extra_args)] graph.signature = Signature(argnames) # note that we can mostly ignore defaults: if nb_extra_args > 0, # then defaults aren't applied. if nb_extra_args == 0, then this _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit