mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
17 lines
364 B
Python
17 lines
364 B
Python
from __future__ import print_function
|
|
|
|
import glob
|
|
import os
|
|
import traceback
|
|
|
|
import sys
|
|
sys.path.insert(0, ".")
|
|
|
|
for file in glob.glob("src/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()
|