summaryrefslogtreecommitdiffstats
path: root/Doc/lib/sqlite3/execute_2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/lib/sqlite3/execute_2.py')
-rw-r--r--Doc/lib/sqlite3/execute_2.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/lib/sqlite3/execute_2.py b/Doc/lib/sqlite3/execute_2.py
index 28318cc..b4333d8 100644
--- a/Doc/lib/sqlite3/execute_2.py
+++ b/Doc/lib/sqlite3/execute_2.py
@@ -10,4 +10,3 @@ age = 72
cur.execute("select name_last, age from people where name_last=:who and age=:age",
{"who": who, "age": age})
print cur.fetchone()
-