Ich habe diesen Code, der in Python 2.5 Fein läuft aber nicht in 2.7:Python 2.7/exec/was ist los?
import sys
import traceback
try:
from io import StringIO
except:
from StringIO import StringIO
def CaptureExec(stmt):
oldio = (sys.stdin, sys.stdout, sys.stderr)
sio = StringIO()
sys.stdout = sys.stderr = sio
try:
exec(stmt, globals(), globals())
out = sio.getvalue()
except Exception, e:
out = str(e) + "\n" + traceback.format_exc()
sys.stdin, sys.stdout, sys.stderr = oldio
return out
print "%s" % CaptureExec("""
import random
print "hello world"
""")
Und ich bekomme:
string argument expected, got 'str' Traceback (most recent call last): File "D:\3.py", line 13, in CaptureExec exec(stmt, globals(), globals()) File "", line 3, in TypeError: string argument expected, got 'str'
Minor Kommentare schreiben: Pythonic Stil ist nur Titlecase für Klassen zu verwenden, sollte es sein 'captureExec' oder' capture_exec'. Außerdem sollten Sie 'ImportError' im' try ... except' Block abfangen. – katrielalex