diff options
author | Eric V. Smith <eric@trueblade.com> | 2016-11-07 22:57:48 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2016-11-07 22:57:48 (GMT) |
commit | 9a8e569865a62b050dae5f31646b5df41f48b3ca (patch) | |
tree | 0013543be0da54e5554c4d97815c6af189bcca9d /Python | |
parent | 25c28c901a5b7cc4459d5d80e2538c816d4ab4f3 (diff) | |
parent | 9b88fdf4f09b77d866a3591c9e64b4e8a5b25920 (diff) | |
download | cpython-9a8e569865a62b050dae5f31646b5df41f48b3ca.zip cpython-9a8e569865a62b050dae5f31646b5df41f48b3ca.tar.gz cpython-9a8e569865a62b050dae5f31646b5df41f48b3ca.tar.bz2 |
Merge from 3.6.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Python/ast.c b/Python/ast.c index 91e7d01..fcd1563 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -5147,7 +5147,8 @@ parsestrplus(struct compiling *c, const node *n) /* Check that we're not mixing bytes with unicode. */ if (i != 0 && bytesmode != this_bytesmode) { ast_error(c, n, "cannot mix bytes and nonbytes literals"); - Py_DECREF(s); + /* s is NULL if the current string part is an f-string. */ + Py_XDECREF(s); goto error; } bytesmode = this_bytesmode; @@ -5161,11 +5162,12 @@ parsestrplus(struct compiling *c, const node *n) if (result < 0) goto error; } else { + /* A string or byte string. */ + assert(s != NULL && fstr == NULL); + assert(bytesmode ? PyBytes_CheckExact(s) : PyUnicode_CheckExact(s)); - /* A string or byte string. */ - assert(s != NULL && fstr == NULL); if (bytesmode) { /* For bytes, concat as we go. */ if (i == 0) { @@ -5177,7 +5179,6 @@ parsestrplus(struct compiling *c, const node *n) goto error; } } else { - assert(s != NULL && fstr == NULL); /* This is a regular string. Concatenate it. */ if (FstringParser_ConcatAndDel(&state, s) < 0) goto error; |