Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/docs/getbuildpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getbuildpath.py')
-rw-r--r--docs/getbuildpath.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/getbuildpath.py b/docs/getbuildpath.py
deleted file mode 100644
index d6e594a..0000000
--- a/docs/getbuildpath.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/python2.4
-import os, sys
-
-# IF YOU ARE NOT GETTING THE RESULTS YOU EXPECT WHILE TESTING
-# THIS IS THE LIKELY CAUSE
-# :: Use distutils to modify the pythonpath for inplace testing
-from distutils.util import get_platform
-plat_specifier = ".%s-%s" % (get_platform(), sys.version[0:3])
-build_platlib = os.path.join("build", 'lib' + plat_specifier)
-test_lib = os.path.join(os.path.abspath(".."), build_platlib)
-sys.path.insert(0, test_lib)
-# END PATH ADJUSTMENT CODE
-print test_lib
-