diff options
Diffstat (limited to 'sandbox/async.py')
-rw-r--r-- | sandbox/async.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sandbox/async.py b/sandbox/async.py index 3766fbb..e9fe281 100644 --- a/sandbox/async.py +++ b/sandbox/async.py @@ -17,7 +17,7 @@ def sleep(curs): while not curs.isready(): print "." time.sleep(.1) - + #curs.execute(""" # DECLARE zz INSENSITIVE SCROLL CURSOR WITH HOLD FOR # SELECT now(); @@ -33,4 +33,3 @@ print curs.fetchall() curs.execute("SELECT now() AS bar") sleep(curs) - |