summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-09-10 18:03:06 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-09-10 18:03:06 +0100
commit7ffb41a4ef5d44128e3f187a877d51fc75a43f07 (patch)
treee9c5fd55935df2339e5d274bc034f913baad85ef
parent71ef656e5087c7f6da6eb96aacfb718a0e657931 (diff)
downloadcython-7ffb41a4ef5d44128e3f187a877d51fc75a43f07.tar.gz
Discard a C comment from the generated files.
-rw-r--r--Cython/Utility/ModuleSetupCode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c
index 139152c79..dc12bac3d 100644
--- a/Cython/Utility/ModuleSetupCode.c
+++ b/Cython/Utility/ModuleSetupCode.c
@@ -182,8 +182,8 @@
#define CYTHON_FAST_GIL (PY_MAJOR_VERSION < 3 || PY_VERSION_HEX >= 0x03060000)
#endif
#ifndef CYTHON_METH_FASTCALL
- /* CPython 3.6 introduced METH_FASTCALL but with slightly different
- * semantics. It became stable starting from CPython 3.7 */
+ // CPython 3.6 introduced METH_FASTCALL but with slightly different
+ // semantics. It became stable starting from CPython 3.7.
#define CYTHON_METH_FASTCALL (PY_VERSION_HEX >= 0x030700A1)
#endif
#ifndef CYTHON_FAST_PYCALL