comparison setup.py @ 589:87db5a732797

Drop bogus comment
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 09 Jan 2022 13:52:05 +0100
parents 79d1e2399af6
children 453c6e2820d1
comparison
equal deleted inserted replaced
588:79d1e2399af6 589:87db5a732797
86 print("removing `%s.egg-info'" % (PROJECT_NAME,)) 86 print("removing `%s.egg-info'" % (PROJECT_NAME,))
87 shutil.rmtree(PROJECT_NAME + ".egg-info") 87 shutil.rmtree(PROJECT_NAME + ".egg-info")
88 88
89 if pure_only_idx is None: 89 if pure_only_idx is None:
90 if wcp_idx is None: 90 if wcp_idx is None:
91 #
92 # Handle the optinal C-extension for Python3.7+ and CPython only.
93 # PyPy does not need this.
94 #
95
96 # 91 #
97 # The C-extension uses multi-phase module initialization 92 # The C-extension uses multi-phase module initialization
98 # (PEP 489) which is PY 3.5+. 93 # (PEP 489) which is PY 3.5+.
99 # 94 #
100 if (platform.python_implementation() == "CPython" 95 if (platform.python_implementation() == "CPython"