summaryrefslogtreecommitdiff
path: root/lib/sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql.py')
-rw-r--r--lib/sql.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sql.py b/lib/sql.py
index d89e117..5dfe7c8 100644
--- a/lib/sql.py
+++ b/lib/sql.py
@@ -203,12 +203,12 @@ class SQL(Composable):
:rtype: `Composed`
The method is similar to the Python `str.format()` method: the string
- template supports auto-numbered (``{}``, only available from Python
- 2.7), numbered (``{0}``, ``{1}``...), and named placeholders
- (``{name}``), with positional arguments replacing the numbered
- placeholders and keywords replacing the named ones. However placeholder
- modifiers (``{0!r}``, ``{0:<10}``) are not supported. Only
- `!Composable` objects can be passed to the template.
+ template supports auto-numbered (``{}``), numbered (``{0}``,
+ ``{1}``...), and named placeholders (``{name}``), with positional
+ arguments replacing the numbered placeholders and keywords replacing
+ the named ones. However placeholder modifiers (``{0!r}``, ``{0:<10}``)
+ are not supported. Only `!Composable` objects can be passed to the
+ template.
Example::