diff options
author | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-11 15:04:52 -0500 |
---|---|---|
committer | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-12 20:23:05 -0500 |
commit | 631eb841084a50518af90e2e728bd1efd31228f7 (patch) | |
tree | 3ecf72cc369486df85aca7d0736e2360e4c7a71c /lib/sqlalchemy/sql/compiler.py | |
parent | f429032ac202a29cb674be461d5fd5fa76a8f0ad (diff) | |
download | sqlalchemy-631eb841084a50518af90e2e728bd1efd31228f7.tar.gz |
Fix cross references
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 4f3dbba36..59506edea 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -198,7 +198,8 @@ class Compiled(object): @util.deprecated("0.7", ":class:`.Compiled` objects now compile " "within the constructor.") def compile(self): - """Produce the internal string representation of this element.""" + """Produce the internal string representation of this element. + """ pass def _execute_on_connection(self, connection, multiparams, params): |