Issue #13491: Fix many errors in sqlite3 documentation

Initial patch by Johannes Vogel.
This commit is contained in:
Petri Lehtinen 2012-02-15 22:17:21 +02:00
parent 2640b52237
commit 1ca93954e1
10 changed files with 29 additions and 52 deletions

View file

@ -1,8 +1,8 @@
import sqlite3
import string
def char_generator():
import string
for c in string.letters[:26]:
for c in string.ascii_lowercase:
yield (c,)
con = sqlite3.connect(":memory:")