summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/patches/fix-segfault-with-pydebug-2.patch
blob: 0ee43cd250938c057e4d3639fa9d4fc47d79dfb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- a/Objects/unicodeobject.c	(index)
+++ b/Objects/unicodeobject.c	(working tree)
@@ -14977,7 +14977,7 @@ intern_static(PyInterpreterState *interp, PyObject *s /* stolen */)
      * per-interpreter interned_dict, which might contain duplicates.
      */
     PyObject *interned = get_interned_dict(interp);
-    assert(interned == NULL);
+    //assert(interned == NULL);
 #endif
 
     /* Look in the global cache first. */