diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2013-01-09 03:10:32 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2013-01-09 03:10:32 +0000 |
commit | 49af4fe53921c77f2934a132c0037e7df6f291ce (patch) | |
tree | ff745f42925ae13460307415c5389f48d1f6e12a | |
parent | 16d96fd43c82f60a4c7220db057fcea6f1b27702 (diff) | |
download | psycopg2-49af4fe53921c77f2934a132c0037e7df6f291ce.tar.gz |
Fixed interactive sessions docs examples
-rw-r--r-- | doc/src/usage.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/usage.rst b/doc/src/usage.rst index 2586d7d..900a144 100644 --- a/doc/src/usage.rst +++ b/doc/src/usage.rst @@ -223,7 +223,7 @@ the SQL string that would be sent to the database. proper SQL literals:: >>> cur.mogrify("SELECT %s, %s, %s;", (None, True, False)) - >>> 'SELECT NULL, true, false;' + 'SELECT NULL, true, false;' .. _adapt-numbers: @@ -237,7 +237,7 @@ the SQL string that would be sent to the database. the PostgreSQL numerical representation:: >>> cur.mogrify("SELECT %s, %s, %s, %s;", (10, 10L, 10.0, Decimal("10.00"))) - >>> 'SELECT 10, 10, 10.0, 10.00;' + 'SELECT 10, 10, 10.0, 10.00;' .. _adapt-string: |