summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rwxr-xr-xbuild/powderbin706296 -> 0 bytes
-rw-r--r--build/tptPython.zipbin6430478 -> 0 bytes
-rw-r--r--src/main.c2
4 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 408a34c..78bbd3e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,5 +8,5 @@ build/stamps/*
*.pyc
utils/*
*.log
-build/ext_*
+build/*
src/python/stdlib/* \ No newline at end of file
diff --git a/build/powder b/build/powder
deleted file mode 100755
index 80e14bd..0000000
--- a/build/powder
+++ /dev/null
Binary files differ
diff --git a/build/tptPython.zip b/build/tptPython.zip
deleted file mode 100644
index 36dc087..0000000
--- a/build/tptPython.zip
+++ /dev/null
Binary files differ
diff --git a/src/main.c b/src/main.c
index 7354220..2b41426 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2076,10 +2076,10 @@ int main(int argc, char *argv[])
//initialise python console
Py_Initialize();
+ PyRun_SimpleString("print 'python present.'");
Py_InitModule("tpt", EmbMethods);
//change the path to find all the correct modules
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
PyRun_SimpleString(tpt_console_py);