From b73b14f070864684bc9a775b481257756ff02055 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 6 Aug 2007 00:59:09 +0000 Subject: - draft sqlexpression tutorial - added some generative methods to exists() - got clause adapter to work with join() --- doc/build/testdocs.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'doc/build/testdocs.py') diff --git a/doc/build/testdocs.py b/doc/build/testdocs.py index 2cef00956..15986c512 100644 --- a/doc/build/testdocs.py +++ b/doc/build/testdocs.py @@ -62,10 +62,11 @@ def replace_file(s, newfile): raise ValueError("Couldn't find suitable create_engine call to replace '%s' in it" % oldfile) return s -for filename in ('ormtutorial', 'adv_datamapping'): +for filename in ('ormtutorial', 'sqlexpression'): +#for filename in ('sqlexpression',): filename = 'content/%s.txt' % filename s = open(filename).read() #s = replace_file(s, ':memory:') - s = re.sub(r'{(?:stop|sql)}', '', s) + s = re.sub(r'{(?:stop|sql|opensql)}', '', s) teststring(s, filename) -- cgit v1.2.1