array support

This commit is contained in:
David Halter
2012-04-15 00:05:34 +02:00
parent af1407dfc4
commit c03bc8c714
4 changed files with 125 additions and 48 deletions

View File

@@ -9,7 +9,7 @@ functions.modules.module_find_path.insert(0, '.')
f_name = 'parsetest.py'
import os
path = os.getcwd() + '/' + f_name
path = os.path.join(os.getcwd(), f_name)
f = open(path)
code = f.read()