diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:15:15 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:15:15 (GMT) |
commit | c2432f6edbec7a8cc1021d2f4fe625ba92dc8ac4 (patch) | |
tree | 129b18d99297288e3b3e1a3ed7b8e732d6040394 /Python | |
parent | 585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (diff) | |
download | cpython-c2432f6edbec7a8cc1021d2f4fe625ba92dc8ac4.zip cpython-c2432f6edbec7a8cc1021d2f4fe625ba92dc8ac4.tar.gz cpython-c2432f6edbec7a8cc1021d2f4fe625ba92dc8ac4.tar.bz2 |
One more typo in a comment
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 88fcd37..5a7a745 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -4035,7 +4035,7 @@ fstring_compile_expr(PyObject *str, Py_ssize_t expr_start, assert(expr_end >= 0 && expr_end < PyUnicode_GET_LENGTH(str)); assert(expr_end >= expr_start); - /* There has to be at least on character on each side of the + /* There has to be at least one character on each side of the expression inside this str. This will have been caught before we're called. */ assert(expr_start >= 1); |