mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
17 lines
360 B
Python
17 lines
360 B
Python
from __future__ import print_function
|
|
|
|
import glob
|
|
import os
|
|
import traceback
|
|
|
|
import sys
|
|
sys.path.insert(0, ".")
|
|
|
|
for file in glob.glob("PIL/*.py"):
|
|
module = os.path.basename(file)[:-3]
|
|
try:
|
|
exec("from PIL import " + module)
|
|
except (ImportError, SyntaxError):
|
|
print("===", "failed to import", module)
|
|
traceback.print_exc()
|