summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLieuwe <lieuwemo@gmail.com>2011-03-18 22:10:38 (GMT)
committer Lieuwe <lieuwemo@gmail.com>2011-03-18 22:10:38 (GMT)
commit6c000478f21070e420b50cf1060737e821f741d8 (patch)
tree02b4e3253cb84b512c31e9831b65d2e9b7ddad44
parent7e27282b92f2eaf6e1cee9fbc73817de054caf59 (diff)
downloadpowder-6c000478f21070e420b50cf1060737e821f741d8.zip
powder-6c000478f21070e420b50cf1060737e821f741d8.tar.gz
changed zip filename
-rw-r--r--addzip.py2
-rwxr-xr-xbuild/powderbin706296 -> 706296 bytes
-rw-r--r--build/tptPython.zip (renamed from build/stdlib.zip)bin6430478 -> 6430478 bytes
-rw-r--r--src/main.c2
4 files changed, 2 insertions, 2 deletions
diff --git a/addzip.py b/addzip.py
index d8f84dc..b80d346 100644
--- a/addzip.py
+++ b/addzip.py
@@ -12,7 +12,7 @@ if(len(sys.argv)>1 and sys.argv[1]=="--clean"):
raise SystemExit
print "zipping stdlib"
-fid=zipfile.ZipFile("./build/stdlib.zip","w",zipfile.ZIP_DEFLATED)
+fid=zipfile.ZipFile("./build/tptPython.zip","w",zipfile.ZIP_DEFLATED)
#ZipFile.write(filename)
files=os.walk("./src/python/stdlib")
diff --git a/build/powder b/build/powder
index d9aa2ed..80e14bd 100755
--- a/build/powder
+++ b/build/powder
Binary files differ
diff --git a/build/stdlib.zip b/build/tptPython.zip
index 36dc087..36dc087 100644
--- a/build/stdlib.zip
+++ b/build/tptPython.zip
Binary files differ
diff --git a/src/main.c b/src/main.c
index 208c38c..7354220 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2078,7 +2078,7 @@ int main(int argc, char *argv[])
Py_Initialize();
Py_InitModule("tpt", EmbMethods);
//change the path to find all the correct modules
- PyRun_SimpleString("import sys\nsys.path.append('./stdlib.zip')\nsys.path.append('.')");
+ PyRun_SimpleString("import sys\nsys.path.append('./tptPython.zip')\nsys.path.append('.')");
PyRun_SimpleString("print 'python present.'");
//load the console module and whatnot
#ifdef PYEXT