Remove trailing semicolons

This commit is contained in:
Hugo 2017-11-28 10:33:31 +02:00 committed by Daniele Varrazzo
parent 283de27098
commit ea76504cd1

View File

@ -22,15 +22,15 @@ def sleep(curs):
# DECLARE zz INSENSITIVE SCROLL CURSOR WITH HOLD FOR
# SELECT now();
# FOR READ ONLY;""", async = 1)
curs.execute("SELECT now() AS foo", async=1);
curs.execute("SELECT now() AS foo", async=1)
sleep(curs)
print curs.fetchall()
#curs.execute("""
# FETCH FORWARD 1 FROM zz;""", async = 1)
curs.execute("SELECT now() AS bar", async=1);
curs.execute("SELECT now() AS bar", async=1)
print curs.fetchall()
curs.execute("SELECT now() AS bar");
curs.execute("SELECT now() AS bar")
sleep(curs)