diff options
author | Georg Brandl <georg@python.org> | 2009-07-26 14:37:28 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-26 14:37:28 (GMT) |
commit | d7d4fd7336baca618eb02b9a7e862bd8452d8f7d (patch) | |
tree | 2273b0b04e103df5de2a4d51d56bcf20793f1719 /Doc/includes/sqlite3/text_factory.py | |
parent | 9fa61bb37d68225c827aa7809382ea701c264db5 (diff) | |
download | cpython-d7d4fd7336baca618eb02b9a7e862bd8452d8f7d.zip cpython-d7d4fd7336baca618eb02b9a7e862bd8452d8f7d.tar.gz cpython-d7d4fd7336baca618eb02b9a7e862bd8452d8f7d.tar.bz2 |
builtin -> built-in.
Diffstat (limited to 'Doc/includes/sqlite3/text_factory.py')
-rw-r--r-- | Doc/includes/sqlite3/text_factory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/sqlite3/text_factory.py b/Doc/includes/sqlite3/text_factory.py index 94a59da..1959498 100644 --- a/Doc/includes/sqlite3/text_factory.py +++ b/Doc/includes/sqlite3/text_factory.py @@ -31,7 +31,7 @@ cur.execute("select ?", ("this is latin1 and would normally create errors" + row = cur.fetchone() assert type(row[0]) == unicode -# sqlite3 offers a builtin optimized text_factory that will return bytestring +# sqlite3 offers a built-in optimized text_factory that will return bytestring # objects, if the data is in ASCII only, and otherwise return unicode objects con.text_factory = sqlite3.OptimizedUnicode cur.execute("select ?", (AUSTRIA,)) |