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 Oren Milman
Recipients Oren Milman, rhettinger, serhiy.storchaka, vstinner
Date 2017-08-16.14:26:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502893588.42.0.910453425673.issue28261@psf.upfronthosting.co.za>
In-reply-to
Content
I replied to your comments in Rietveld, Serhiy. (http://bugs.python.org/review/28261)

also, i found two places with a quite similar issue:
- in Objects/exceptions.c in ImportError_init:
    >>> ImportError(1, 2, 3, 4, a=5, b=6, c=7)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: ImportError() takes at most 2 arguments (3 given)
- in Python/bltinmodule.c in min_max:
    >>> min(1, 2, 3, 4, a=5, b=6, c=7)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: function takes at most 2 arguments (3 given)

may I fix them also as part of this issue?
History
Date User Action Args
2017-08-16 14:26:28Oren Milmansetrecipients: + Oren Milman, rhettinger, vstinner, serhiy.storchaka
2017-08-16 14:26:28Oren Milmansetmessageid: <1502893588.42.0.910453425673.issue28261@psf.upfronthosting.co.za>
2017-08-16 14:26:28Oren Milmanlinkissue28261 messages
2017-08-16 14:26:28Oren Milmancreate