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 eric.snow
Recipients brett.cannon, eric.snow
Date 2014-05-26.04:31:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401078695.26.0.813929580296.issue21578@psf.upfronthosting.co.za>
In-reply-to
Content
>>> ImportError(spam='spam')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: ImportError does not take keyword arguments

However, it *does* take keyword arguments:

>>> ImportError(name='spam', path='spam')
ImportError()
History
Date User Action Args
2014-05-26 04:31:35eric.snowsetrecipients: + eric.snow, brett.cannon
2014-05-26 04:31:35eric.snowsetmessageid: <1401078695.26.0.813929580296.issue21578@psf.upfronthosting.co.za>
2014-05-26 04:31:35eric.snowlinkissue21578 messages
2014-05-26 04:31:35eric.snowcreate