This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author korijn
Recipients dstufft, eric.araujo, korijn
Date 2018-02-26.15:24:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519658682.25.0.467229070634.issue32957@psf.upfronthosting.co.za>
In-reply-to
Content
distutils' Distribution class has a method has_ext_modules() that is used to determine if any extension modules are included in a distribution. There remains a call site in distutils.command.install where self.distribution.ext_modules is directly tested for truthiness, rather than calling has_ext_modules. This causes inconsistent behavior, e.g. when overriding has_ext_modules in a Distribution subclass.
History
Date User Action Args
2018-02-26 15:24:42korijnsetrecipients: + korijn, eric.araujo, dstufft
2018-02-26 15:24:42korijnsetmessageid: <1519658682.25.0.467229070634.issue32957@psf.upfronthosting.co.za>
2018-02-26 15:24:42korijnlinkissue32957 messages
2018-02-26 15:24:42korijncreate