summaryrefslogtreecommitdiff
path: root/sandbox/async.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2017-12-01 21:37:49 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2017-12-01 21:42:14 -0800
commite335d6d2234a7bb1d83741f851dba5dbbabd6e3c (patch)
treebe5545f9f2c20bc41b500d4aac462fd40c0ea8d8 /sandbox/async.py
parenta51160317c680662c52e4a1a6b4d11beae37f205 (diff)
downloadpsycopg2-e335d6d2234a7bb1d83741f851dba5dbbabd6e3c.tar.gz
Trim trailing whitespace from all files throughout project
Many editors automatically trim whitespace on save. By trimming all files in one go, makes future diffs cleaner without extraneous whitespace changes.
Diffstat (limited to 'sandbox/async.py')
-rw-r--r--sandbox/async.py3
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)
-