implemented tree function

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@131 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf 2009-04-28 18:42:40 +00:00
parent 92b5e55a75
commit 1060e9d275

View File

@ -166,7 +166,7 @@ def tree(expression):
'''This function parses a relational algebra expression into a tree and returns
the root node using the Node class defined in this module.'''
#isinstance(k,list)
pass
return node(tokenize(expression))
if __name__=="__main__":