Commit a4b4dea4 authored by Stefan Krah's avatar Stefan Krah

Use C-style comments (required for the AIX build slave).

parent f817a7b1
...@@ -1236,8 +1236,8 @@ unicodedata_lookup(PyObject* self, PyObject* args) ...@@ -1236,8 +1236,8 @@ unicodedata_lookup(PyObject* self, PyObject* args)
PyErr_Format(PyExc_KeyError, "undefined character name '%s'", name); PyErr_Format(PyExc_KeyError, "undefined character name '%s'", name);
return NULL; return NULL;
} }
// check if code is in the PUA range that we use for named sequences /* check if code is in the PUA range that we use for named sequences
// and convert it and convert it */
if (IS_NAMED_SEQ(code)) { if (IS_NAMED_SEQ(code)) {
index = code-named_sequences_start; index = code-named_sequences_start;
return PyUnicode_FromKindAndData(PyUnicode_2BYTE_KIND, return PyUnicode_FromKindAndData(PyUnicode_2BYTE_KIND,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment