diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2015-01-05 09:03:05 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2015-01-05 12:59:40 +0100 |
commit | d17b009ffec3077bf8db6e6902a7456ec90e9c38 (patch) | |
tree | 2a5ee305bd8c8a39faf7c2db342d399c689ae432 /test/__init__.py | |
parent | a9e311030533ac6c175e2289e8928e4aae98b6c3 (diff) | |
download | pyg-d17b009ffec3077bf8db6e6902a7456ec90e9c38.tar.gz |
First draft of the pure Python parser done, we should be noarch.
Fixes #2
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/__init__.py b/test/__init__.py index 55f45b6..e69de29 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,13 +0,0 @@ -import os.path -import sys -import sysconfig - - -def distutils_dir_name(dname): - """Returns the name of a distutils build directory""" - f = "{dirname}.{platform}-{version[0]}.{version[1]}" - return f.format(dirname=dname, - platform=sysconfig.get_platform(), - version=sys.version_info) -wlp_lib_path = os.path.join('build', distutils_dir_name('lib')) -sys.path.insert(0, wlp_lib_path) |