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 theller
Recipients theller
Date 2008-12-12.20:13:52
SpamBayes Score 3.2270184e-06
Marked as misclassified No
Message-id <1229112904.14.0.0159399234206.issue4646@psf.upfronthosting.co.za>
In-reply-to
Content
Distutils setup function accepts an 'options' named argument which
allows to pass options to subcommands in a dictionary (At the moment I
cannot find where this is documented).
When an empty dictionary is passed, distutils spits out a warning:

C:\sf\comtypes>py3 setup.py clean
c:\python30\lib\distutils\dist.py:259: UserWarning: Unknown distribution
option: 'options'
  warnings.warn(msg)
running clean
...

I believe the bug is in all versions of Python; since it never has been
fixed (or even found) I'm not sure if it is worth fixing.  However,
patch is attached.
History
Date User Action Args
2008-12-12 20:15:04thellersetrecipients: + theller
2008-12-12 20:15:04thellersetmessageid: <1229112904.14.0.0159399234206.issue4646@psf.upfronthosting.co.za>
2008-12-12 20:13:54thellerlinkissue4646 messages
2008-12-12 20:13:53thellercreate