Whitespace normalization.

This commit is contained in:
Tim Peters 2006-05-03 04:46:14 +00:00
parent 3053667d09
commit 4511a713d5
8 changed files with 64 additions and 72 deletions

View file

@ -14,4 +14,3 @@ cur = con.cursor()
p = Point(4.0, -3.2)
cur.execute("select ?", (p,))
print cur.fetchone()[0]

View file

@ -15,4 +15,3 @@ cur = con.cursor()
p = Point(4.0, -3.2)
cur.execute("select ?", (p,))
print cur.fetchone()[0]

View file

@ -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()

View file

@ -10,5 +10,3 @@ age = 72
cur.execute("select name_last, age from people where name_last=:who and age=:age",
locals())
print cur.fetchone()

View file

@ -14,4 +14,3 @@ for person in newPeople:
# The changes will not be saved unless the transaction is committed explicitly:
con.commit()

View file

@ -19,4 +19,3 @@ for row in con.execute("select firstname, lastname from person"):
# Using a dummy WHERE clause to not let SQLite take the shortcut table deletes.
print "I just deleted", con.execute("delete from person where 1=1").rowcount, "rows"

View file

@ -40,4 +40,3 @@ assert type(row[0]) == unicode
cur.execute("select ?", ("Germany",))
row = cur.fetchone()
assert type(row[0]) == str