J'ai ce code qui fonctionne très bien en Python 2.5, mais pas 2.7:python 2.7/exec/quel est le problème?
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"
""")
Et je reçois:
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'
commentaires mineurs: le style Pythonic est d'utiliser TitleCase pour les classes seulement, il devrait être 'captureExec' ou' capture_exec'. En outre, vous devriez attraper 'ImportError' dans le bloc' try ... except'. – katrielalex