mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 20:23:43 +02:00
...
This commit is contained in:
parent
f68c1f2672
commit
9b0ed4204d
1 changed files with 1 additions and 2 deletions
|
|
@ -10,11 +10,10 @@
|
|||
import textwrap, os, shlex, subprocess, glob, shutil, re, sys, json
|
||||
from collections import namedtuple
|
||||
|
||||
from setup import Command, islinux, isbsd, isfreebsd, isosx, ishaiku, SRC, iswindows, __version__
|
||||
from setup import Command, islinux, isbsd, isfreebsd, isosx, ishaiku, SRC, iswindows, __version__, ispy3
|
||||
isunix = islinux or isosx or isbsd or ishaiku
|
||||
|
||||
py_lib = os.path.join(sys.prefix, 'libs', 'python%d%d.lib' % sys.version_info[:2])
|
||||
ispy3 = sys.version_info.major > 2
|
||||
|
||||
|
||||
def init_symbol_name(name):
|
||||
|
|
|
|||
Loading…
Reference in a new issue