first commit

This commit is contained in:
Mysterie
2012-06-05 10:46:41 +02:00
commit b820316f37
82 changed files with 83963 additions and 0 deletions

6
test/test_divide_no_future.py Executable file
View File

@@ -0,0 +1,6 @@
#from __future__ import division
print ' 1 // 2 =', 1 // 2
print '1.0 // 2.0 =', 1.0 // 2.0
print ' 1 / 2 =', 1 / 2
print '1.0 / 2.0 =', 1.0 / 2.0