Merge pull request #489 from wzyboy/backports/pylzma

Support pylzma as a fallback
This commit is contained in:
Apprentice Harper
2018-05-05 18:36:55 +01:00
committed by GitHub
7 changed files with 36 additions and 15 deletions

View File

@@ -23,13 +23,17 @@ from Crypto.Util.py3compat import bchr, bord
try:
# lzma library from calibre 2.35.0 or later
import lzma.lzma1 as calibre_lzma
except:
except ImportError:
calibre_lzma = None
try:
import lzma
except:
except ImportError:
# Need pip backports.lzma on Python <3.3
from backports import lzma
try:
from backports import lzma
except ImportError:
# Windows-friendly choice: pylzma wheels
import pylzma as lzma
TID_NULL = 0

View File

@@ -15,9 +15,9 @@ except ImportError:
from StringIO import StringIO
try:
import ion
except:
from calibre_plugins.dedrm import ion
except ImportError:
import ion
__license__ = 'GPL v3'