diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-02-28 00:27:27 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-02-28 00:27:27 +0000 |
| commit | 132006ba8a714199d4f761b0e66fc2e516e46ba3 (patch) | |
| tree | d66e54051a92d4842db8dff989ec1d4143f7a586 /lib/sqlalchemy/ext/compiler.py | |
| parent | f78db5e1f68d6b2fb6a7acc04036f682d9a22974 (diff) | |
| parent | a836e3df5d973f75bd8330cecb76511b67c13612 (diff) | |
| download | sqlalchemy-132006ba8a714199d4f761b0e66fc2e516e46ba3.tar.gz | |
Merge "Remove print statement in favor of print() function in docs and examples"
Diffstat (limited to 'lib/sqlalchemy/ext/compiler.py')
| -rw-r--r-- | lib/sqlalchemy/ext/compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/ext/compiler.py b/lib/sqlalchemy/ext/compiler.py index 59c16f803..c27907cdc 100644 --- a/lib/sqlalchemy/ext/compiler.py +++ b/lib/sqlalchemy/ext/compiler.py @@ -32,7 +32,7 @@ when the object is compiled to a string:: from sqlalchemy import select s = select([MyColumn('x'), MyColumn('y')]) - print str(s) + print(str(s)) Produces:: @@ -90,7 +90,7 @@ method which can be used for compilation of embedded attributes:: ) insert = InsertFromSelect(t1, select([t1]).where(t1.c.x>5)) - print insert + print(insert) Produces:: |
