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 SylvainDe
Recipients SylvainDe
Date 2017-06-07.20:18:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496866696.02.0.805235407001.issue30592@psf.upfronthosting.co.za>
In-reply-to
Content
Very recent "regression". Issue found because of a pet project trying to parse error messages using regexps : more on https://github.com/SylvainDe/DidYouMean-Python/issues/31 .

On recent Cron builds on Jenkins, running the following code

    bool(this_doesnt_exist=2)

fails with the following error message

    'bool()() takes no keyword arguments'

instead of the expected error message

    'bool() takes no keyword arguments'.


Having a quick look at the recent commits, I suspect with no guarantee whatsoever the issue got introduced with https://github.com/python/cpython/commit/5eb788bf7f54a8e04429e18fc332db858edd64b6 / http://bugs.python.org/issue30534 .

I haven't tried to reproduce the issue locally yet and add the findinds if any later on.
History
Date User Action Args
2017-06-07 20:18:16SylvainDesetrecipients: + SylvainDe
2017-06-07 20:18:16SylvainDesetmessageid: <1496866696.02.0.805235407001.issue30592@psf.upfronthosting.co.za>
2017-06-07 20:18:16SylvainDelinkissue30592 messages
2017-06-07 20:18:15SylvainDecreate