summaryrefslogtreecommitdiff
path: root/doc/build/testdocs.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-09 21:50:23 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-09 21:50:23 +0000
commit578efcfeb3b0b177ce559f5e7748c02f2fc263a7 (patch)
tree701f524427eb889317f1d8df21fa6f557fc64748 /doc/build/testdocs.py
parent72b02cc09364da3f7be9e2cac5e2fb5db4222a2d (diff)
downloadsqlalchemy-578efcfeb3b0b177ce559f5e7748c02f2fc263a7.tar.gz
- decoupled all ColumnElements from also being Selectables. this means
that anything which is a column expression does not have a "c" or a "columns" attribute. Also works for select().as_scalar(); _ScalarSelect is a columnelement, so you can't say select().as_scalar().c.foo, which is a pretty confusing mistake to make. in the case of _ScalarSelect made an explicit raise if you try to access 'c'.
Diffstat (limited to 'doc/build/testdocs.py')
-rw-r--r--doc/build/testdocs.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/build/testdocs.py b/doc/build/testdocs.py
index 15986c512..0f5f69330 100644
--- a/doc/build/testdocs.py
+++ b/doc/build/testdocs.py
@@ -63,7 +63,6 @@ def replace_file(s, newfile):
return s
for filename in ('ormtutorial', 'sqlexpression'):
-#for filename in ('sqlexpression',):
filename = 'content/%s.txt' % filename
s = open(filename).read()
#s = replace_file(s, ':memory:')