aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorwbond <will@wbond.net>2018-04-17 14:40:12 -0400
committerwbond <will@wbond.net>2018-04-17 14:40:12 -0400
commit5125f9915d67cb1e04582822fa2f950c65a8784c (patch)
treeef971649f127d63f0534ba1b2fb4dda94b7a457b /dev
parent44fa43102b9cec7d7c3c24b09bdd878443df39a9 (diff)
downloadasn1crypto-5125f9915d67cb1e04582822fa2f950c65a8784c.tar.gz
deps.py debugging
Diffstat (limited to 'dev')
-rw-r--r--dev/deps.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/deps.py b/dev/deps.py
index a6472a4..f5bbcc0 100644
--- a/dev/deps.py
+++ b/dev/deps.py
@@ -15,6 +15,7 @@ import json
import tarfile
import zipfile
import platform
+import ctypes
if sys.version_info >= (2, 7):
import sysconfig
@@ -370,6 +371,7 @@ def _stage_requirements(deps_dir, path):
for ti in tf.getmembers():
fn = ti.name
if fn.startswith(pkg + '/') or fn.startswith(pkg + '\\') or fn.startswith(pkg + '.py'):
+ print('Found member: %s' % fn)
members.append(fn)
tf.extractall(deps_dir, members)
finally: