]> granicus.if.org Git - python/commitdiff
Fixed issue #28633: segfault when concatenating bytes literal and f-string.
authorEric V. Smith <eric@trueblade.com>
Mon, 7 Nov 2016 22:54:01 +0000 (17:54 -0500)
committerEric V. Smith <eric@trueblade.com>
Mon, 7 Nov 2016 22:54:01 +0000 (17:54 -0500)
Lib/test/test_fstring.py
Python/ast.c

index 086bf673f9d563a0635f6938ed2e74238abc4128..82050835f6aee401d942e2a487111869616c255d 100644 (file)
@@ -92,6 +92,13 @@ f'{a * x()}'"""
         exec(c)
         self.assertEqual(x[0], 'foo3')
 
+    def test_compile_time_concat_errors(self):
+        self.assertAllRaise(SyntaxError,
+                            'cannot mix bytes and nonbytes literals',
+                            [r"""f'' b''""",
+                             r"""b'' f''""",
+                             ])
+
     def test_literal(self):
         self.assertEqual(f'', '')
         self.assertEqual(f'a', 'a')
index 91e7d0129f47caf572b13d5b6365068020d0aaa1..fcd1563a69a558486d57b48f658b6a66f8a192b7 100644 (file)
@@ -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;