Text files missing the SVN eol-style property.

This commit is contained in:
Tim Peters 2006-05-16 23:24:08 +00:00
parent cbd7b756e4
commit 1b38357094
27 changed files with 1427 additions and 1427 deletions

View file

@ -1,12 +1,12 @@
import sqlite3
con = sqlite3.connect("mydb")
cur = con.cursor()
who = "Yeltsin"
age = 72
cur.execute("select name_last, age from people where name_last=:who and age=:age",
{"who": who, "age": age})
print cur.fetchone()
import sqlite3
con = sqlite3.connect("mydb")
cur = con.cursor()
who = "Yeltsin"
age = 72
cur.execute("select name_last, age from people where name_last=:who and age=:age",
{"who": who, "age": age})
print cur.fetchone()