Message300366
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? |
|
Date |
User |
Action |
Args |
2017-08-16 14:26:28 | Oren Milman | set | recipients:
+ Oren Milman, rhettinger, vstinner, serhiy.storchaka |
2017-08-16 14:26:28 | Oren Milman | set | messageid: <1502893588.42.0.910453425673.issue28261@psf.upfronthosting.co.za> |
2017-08-16 14:26:28 | Oren Milman | link | issue28261 messages |
2017-08-16 14:26:28 | Oren Milman | create | |
|