[issue30002] Minor change to https://docs.python.org/3.6/extending/building.html

2017-04-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'm not really sure that is a standard or even a best practice. I think some people do it and some don't. -- nosy: +rhettinger ___ Python tracker _

[issue30002] Minor change to https://docs.python.org/3.6/extending/building.html

2017-04-05 Thread Arthur Goldberg
New submission from Arthur Goldberg: The core example on this page starts: from distutils.core import setup, Extension module1 = Extension('demo', sources = ['demo.c']) ... I suggest that 'sources = ['demo.c']' be changed to 'sources = ['demomodule.c']', because this woul