summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-09-23 13:51:16 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-09-23 13:51:16 (GMT)
commita4b4dea4150631c3390f6bd85cb4e0f845434396 (patch)
tree469670b4669249085d7ba9185ce34c86d5ebf31b /Modules
parentf817a7b178e945b4261f2ddee067ae849dfbc5ec (diff)
downloadcpython-a4b4dea4150631c3390f6bd85cb4e0f845434396.zip
cpython-a4b4dea4150631c3390f6bd85cb4e0f845434396.tar.gz
cpython-a4b4dea4150631c3390f6bd85cb4e0f845434396.tar.bz2
Use C-style comments (required for the AIX build slave).
Diffstat (limited to 'Modules')
-rw-r--r--Modules/unicodedata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 5c982f5..d339f58 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -1236,8 +1236,8 @@ unicodedata_lookup(PyObject* self, PyObject* args)
PyErr_Format(PyExc_KeyError, "undefined character name '%s'", name);
return NULL;
}
- // check if code is in the PUA range that we use for named sequences
- // and convert it
+ /* check if code is in the PUA range that we use for named sequences
+ and convert it */
if (IS_NAMED_SEQ(code)) {
index = code-named_sequences_start;
return PyUnicode_FromKindAndData(PyUnicode_2BYTE_KIND,