code review of modules in lib/core directory

This commit is contained in:
Miroslav Stampar
2011-01-15 12:13:45 +00:00
parent 2d9b151883
commit 6a0e0cde3c
9 changed files with 70 additions and 81 deletions

View File

@@ -291,7 +291,7 @@ class Dump:
if re.search("^[\ *]*$", value): #NULL
continue
temp = int(value)
_ = int(value)
except ValueError:
colType = None
break
@@ -304,7 +304,7 @@ class Dump:
if re.search("^[\ *]*$", value): #NULL
continue
temp = float(value)
_ = float(value)
except ValueError:
colType = None
break