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 kayhayen
Recipients kayhayen
Date 2017-07-08.07:00:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499497206.26.0.40333592604.issue30878@psf.upfronthosting.co.za>
In-reply-to
Content
Check out this:

python3.6 -c "staticmethod(function=1)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: staticmethod expected 1 arguments, got 0

python3.6 -c "staticmethod()"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: staticmethod expected 1 arguments, got 0

python3.6 -c "staticmethod(f=1)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: staticmethod expected 1 arguments, got 0

I believe Python 2.7 behaves the same.

What should happen is more like this:

python3.6 -c "range(f=1)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: range() does not take keyword arguments

While statically optimizing, I came across this as a first. At least "classmethod" behaves the same. I suppose it is because these are not intended for manual use anymore.

I would recommend to fix up the argument parsing to either indicate its rejection of keyword arguments, or to accept "function = " for input (preferred).

Thanks,
Kay Hayen
History
Date User Action Args
2017-07-08 07:00:06kayhayensetrecipients: + kayhayen
2017-07-08 07:00:06kayhayensetmessageid: <1499497206.26.0.40333592604.issue30878@psf.upfronthosting.co.za>
2017-07-08 07:00:06kayhayenlinkissue30878 messages
2017-07-08 07:00:05kayhayencreate