convert argument to string

--HG--
branch : trunk
This commit is contained in:
Benjamin Peterson 2009-08-30 08:25:40 -05:00
parent 318a935b89
commit 749bfa46c4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ if debug: # and not os.isatty(sys.stdin.fileno()):
#compile = py.code.compile
def print_(*args):
print(" ".join(args))
print(" ".join(str(arg) for arg in args))
if sys.version_info > (3, 0):
exec("""def exec_(source, locs):