diff options
Diffstat (limited to 'sandbox/dec2float.py')
-rw-r--r-- | sandbox/dec2float.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/dec2float.py b/sandbox/dec2float.py index 2006e0a..481defa 100644 --- a/sandbox/dec2float.py +++ b/sandbox/dec2float.py @@ -12,4 +12,4 @@ o = psycopg2.connect("dbname=test") c = o.cursor() c.execute("SELECT NULL::decimal(10,2)") n = c.fetchone()[0] -print n, type(n) +print(n, type(n)) |