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 vinay.sajip
Recipients carljm, eric.araujo, nicksloan, tarek, vinay.sajip
Date 2013-04-15.18:38:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366051134.2.0.543983954612.issue17732@psf.upfronthosting.co.za>
In-reply-to
Content
> On second thought, there is probably no good reason to ignore the build-* settings.

I was just about to mention this. I'm not an expert on distutils internals and whether this is the best way to accomplish what's needed, but the approach seems reasonable to me. Why the empty list and the extend, though? Why not something like the following?

if sys.prefix == sys.base_prefix:
    # not in venv
    ignore_options = []
else:
    # in venv
    ignore_options = ['install-base', ...]

My other comments on the patch are generic, i.e. you need to look at the tests and docs, too.

Anyway, thanks for the effort you've spent to come up with a patch. Can I suggest that you sign a PSF contributor form to license your work to the PSF?

http://www.python.org/psf/contrib/contrib-form/
History
Date User Action Args
2013-04-15 18:38:54vinay.sajipsetrecipients: + vinay.sajip, tarek, carljm, eric.araujo, nicksloan
2013-04-15 18:38:54vinay.sajipsetmessageid: <1366051134.2.0.543983954612.issue17732@psf.upfronthosting.co.za>
2013-04-15 18:38:54vinay.sajiplinkissue17732 messages
2013-04-15 18:38:54vinay.sajipcreate