add a bug repport!

This commit is contained in:
lafrite 2014-01-15 16:54:33 +01:00
parent 856cf8a323
commit fbb8951216
2 changed files with 7 additions and 2 deletions

5
TODO
View File

@ -1,4 +1,5 @@
# Todolist
* Improve fix recognition
* More flexible expression parsing
* Improve fix recognition (DONE)
* More flexible expression parsing (DONE)
* bug: expression can't handle -(-2)

View File

@ -360,6 +360,10 @@ if __name__ == '__main__':
exp="-2*4(12 + 1)(3-12)"
test(exp)
## Can't handle it yet!!
#exp="-(-2)"
#test(exp)
import doctest
doctest.testmod()