Skip to content

Commit 0e97a90

Browse files
committed
Improved comments
1 parent a925f04 commit 0e97a90

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import setuptools.command.build_py
3535
import setuptools.command.sdist
3636

37+
# sys.path modified to find setupext.py during pyproject.toml builds.
3738
sys.path.append(str(Path(__file__).resolve().parent))
3839

3940
import setupext
@@ -71,7 +72,7 @@ def has_flag(self, flagname):
7172
class BuildExtraLibraries(setuptools.command.build_ext.build_ext):
7273
def finalize_options(self):
7374
# If coverage is enabled then need to keep the .o and .gcno files in a
74-
# non-temporary directory otherwise coverage info is not collected.
75+
# non-temporary directory otherwise coverage info not collected.
7576
cppflags = os.getenv('CPPFLAGS')
7677
if cppflags and '--coverage' in cppflags:
7778
self.build_temp = 'build'

0 commit comments

Comments
 (0)