From 49af4fe53921c77f2934a132c0037e7df6f291ce Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 9 Jan 2013 03:10:32 +0000 Subject: [PATCH] Fixed interactive sessions docs examples --- doc/src/usage.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/usage.rst b/doc/src/usage.rst index 2586d7d8..900a144b 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: