Move scanners in its own directory. Dir base-tests -> base_tests so we

can import from that.
This commit is contained in:
rocky
2015-12-14 08:48:59 -05:00
parent f595f659ad
commit b5797dfa0f
61 changed files with 213 additions and 277 deletions

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