diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-06 00:59:09 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-06 00:59:09 +0000 |
| commit | b73b14f070864684bc9a775b481257756ff02055 (patch) | |
| tree | 6c81ccc8212cf25a8759bd9fd4a79e4837beacba /doc/build/testdocs.py | |
| parent | 98230f7c32ff0821984afc1aa4b736fa594c390d (diff) | |
| download | sqlalchemy-b73b14f070864684bc9a775b481257756ff02055.tar.gz | |
- draft sqlexpression tutorial
- added some generative methods to exists()
- got clause adapter to work with join()
Diffstat (limited to 'doc/build/testdocs.py')
| -rw-r--r-- | doc/build/testdocs.py | 5 |
1 files changed, 3 insertions, 2 deletions
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)
|
