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 Sebastian Kreft
Recipients Sebastian Kreft
Date 2015-09-16.14:48:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442414927.94.0.928583151354.issue25142@psf.upfronthosting.co.za>
In-reply-to
Content
ImportError now supports the keyword arguments name and path. However, when passing invalid keyword arguments, the reported error is misleading, as shown below.

In [1]: ImportError('lib', name='lib')
Out[1]: ImportError('lib')

In [2]: ImportError('lib', name='lib', foo='foo')
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-2-5af12651187f> in <module>()
----> 1 ImportError('lib', name='lib', foo='foo')

TypeError: ImportError does not take keyword arguments
History
Date User Action Args
2015-09-16 14:48:48Sebastian Kreftsetrecipients: + Sebastian Kreft
2015-09-16 14:48:47Sebastian Kreftsetmessageid: <1442414927.94.0.928583151354.issue25142@psf.upfronthosting.co.za>
2015-09-16 14:48:47Sebastian Kreftlinkissue25142 messages
2015-09-16 14:48:47Sebastian Kreftcreate