[Python-3000-checkins] r57752 - python/branches/py3k/Objects/typeobject.c

georg.brandl python-3000-checkins at python.org
Thu Aug 30 20:29:48 CEST 2007


Author: georg.brandl
Date: Thu Aug 30 20:29:48 2007
New Revision: 57752

Modified:
   python/branches/py3k/Objects/typeobject.c
Log:
Fix #1753395.


Modified: python/branches/py3k/Objects/typeobject.c
==============================================================================
--- python/branches/py3k/Objects/typeobject.c	(original)
+++ python/branches/py3k/Objects/typeobject.c	Thu Aug 30 20:29:48 2007
@@ -1561,28 +1561,16 @@
 static int
 valid_identifier(PyObject *s)
 {
-	Py_UNICODE *p;
-	Py_ssize_t i, n;
-
 	if (!PyUnicode_Check(s)) {
 		PyErr_Format(PyExc_TypeError,
 			     "__slots__ items must be strings, not '%.200s'",
 			     Py_Type(s)->tp_name);
 		return 0;
 	}
-	p = PyUnicode_AS_UNICODE(s);
-	n = PyUnicode_GET_SIZE(s);
-	/* We must reject an empty name.  As a hack, we bump the
-	   length to 1 so that the loop will balk on the trailing \0. */
-	if (n == 0)
-		n = 1;
-	for (i = 0; i < n; i++, p++) {
-		if (*p > 127 ||
-		    (!(i == 0 ? isalpha(*p) : isalnum(*p)) && *p != '_')) {
-			PyErr_SetString(PyExc_TypeError,
-					"__slots__ must be identifiers");
-			return 0;
-		}
+	if (!PyUnicode_IsIdentifier(s)) {
+		PyErr_SetString(PyExc_TypeError,
+				"__slots__ must be identifiers");
+		return 0;
 	}
 	return 1;
 }


More information about the Python-3000-checkins mailing list