]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 67320 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Fri, 21 Nov 2008 22:58:57 +0000 (22:58 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 21 Nov 2008 22:58:57 +0000 (22:58 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67320 | benjamin.peterson | 2008-11-21 16:27:24 -0600 (Fri, 21 Nov 2008) | 4 lines

  don't segfault when \N escapes are used and unicodedata fails to load

  Fixes #4367
........

Lib/test/test_unicodedata.py
Python/ast.c

index 6edda3ae2b9f564e18c2a8b8b8f90cf532ffbaee..2dfa807b99c781f7d9e6243c86b15dbbeba0454a 100644 (file)
@@ -4,9 +4,13 @@
 
     (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
 
-"""#"
-import unittest, test.support
+"""
+
+import sys
+import unittest
 import hashlib
+import subprocess
+import test.support
 
 encoding = 'utf-8'
 
@@ -197,6 +201,25 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest):
 
 class UnicodeMiscTest(UnicodeDatabaseTest):
 
+    def test_failed_import_during_compiling(self):
+        # Issue 4367
+        # Decoding \N escapes requires the unicodedata module. If it can't be
+        # imported, we shouldn't segfault.
+
+        # This program should raise a SyntaxError in the eval.
+        code = "import sys;" \
+            "sys.modules['unicodedata'] = None;" \
+            """eval("'\\\\N{SOFT HYPHEN}'")"""
+        args = [sys.executable, "-c", code]
+        # We use a subprocess because the unicodedata module may already have
+        # been loaded in this process.
+        popen = subprocess.Popen(args, stderr=subprocess.PIPE)
+        popen.wait()
+        self.assertEqual(popen.returncode, 1)
+        error = "SyntaxError: (unicode error) \\N escapes not supported " \
+            "(can't load unicodedata module)"
+        self.assertTrue(error in popen.stderr.read().decode("ascii"))
+
     def test_decimal_numeric_consistent(self):
         # Test that decimal and numeric are consistent,
         # i.e. if a character has a decimal value,
index 1cf100e449204477d4bd983af4d1d7786f94d779..df948501b3430c18fe5438a832da3e1087464b96 100644 (file)
@@ -1321,13 +1321,14 @@ ast_for_atom(struct compiling *c, const node *n)
             if (PyErr_ExceptionMatches(PyExc_UnicodeError)) {
                 PyObject *type, *value, *tback, *errstr;
                 PyErr_Fetch(&type, &value, &tback);
-                errstr = ((PyUnicodeErrorObject *)value)->reason;
+                errstr = PyObject_Str(value);
                 if (errstr) {
                     char *s = "";
                     char buf[128];
                     s = _PyUnicode_AsString(errstr);
                     PyOS_snprintf(buf, sizeof(buf), "(unicode error) %s", s);
                     ast_error(n, buf);
+                    Py_DECREF(errstr);
                 } else {
                     ast_error(n, "(unicode error) unknown error");
                 }