Move the 2.6 reST doc tree in place.

This commit is contained in:
Georg Brandl 2007-08-15 14:28:01 +00:00
parent f56181ff53
commit 8ec7f65613
445 changed files with 136056 additions and 0 deletions

View file

@ -0,0 +1,24 @@
import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.executescript("""
create table person(
firstname,
lastname,
age
);
create table book(
title,
author,
published
);
insert into book(title, author, published)
values (
'Dirk Gently''s Holistic Detective Agency',
'Douglas Adams',
1987
);
""")