Pillow/src/PIL/_util.py

31 lines
503 B
Python
Raw Normal View History

2018-06-13 12:44:36 +03:00
import os
import sys
2013-07-25 20:25:18 +04:00
py36 = sys.version_info[0:2] >= (3, 6)
2018-04-20 02:19:13 +03:00
2019-03-21 16:28:20 +03:00
2019-09-26 15:12:28 +03:00
if py36:
from pathlib import Path
2019-03-21 16:28:20 +03:00
2019-09-26 15:12:28 +03:00
def isPath(f):
return isinstance(f, (bytes, str, Path))
2019-03-21 16:28:20 +03:00
2013-06-30 22:50:38 +04:00
else:
2019-03-21 16:28:20 +03:00
2013-06-30 22:50:38 +04:00
def isPath(f):
2019-09-26 15:12:28 +03:00
return isinstance(f, (bytes, str))
2013-06-30 22:50:38 +04:00
2014-07-06 02:50:24 +04:00
2013-06-30 22:50:38 +04:00
# Checks if an object is a string, and that it points to a directory.
def isDirectory(f):
return isPath(f) and os.path.isdir(f)
2014-04-03 07:09:04 +04:00
2014-07-06 02:50:24 +04:00
class deferred_error:
def __init__(self, ex):
self.ex = ex
2014-07-06 02:50:24 +04:00
2014-04-03 07:09:04 +04:00
def __getattr__(self, elt):
raise self.ex