Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-33967: singledispatch raises TypeError when no positional arguments #8184

Merged
merged 1 commit into from
Jul 10, 2018

Conversation

corona10
Copy link
Member

@corona10 corona10 commented Jul 8, 2018

@methane
Copy link
Member

methane commented Jul 9, 2018

I think this is too much.

I think this is enough:

if not args:
    raise TypeError("singledispatch requires at least 1 positional argument")

@methane methane requested a review from ambv July 9, 2018 09:15
@doerwalter
Copy link
Contributor

True, both f(x=3) and g(*args) can be called with one argument, so shouldn't be rejected. I think @methane's solution does the right thing.

@corona10
Copy link
Member Author

corona10 commented Jul 9, 2018

Okay can I update this PR into suggested one?

@corona10
Copy link
Member Author

corona10 commented Jul 9, 2018

@doerwalter @methane

Updated! Please take a look!

with self.assertRaisesRegexp(TypeError, msg):
g()
with self.assertRaisesRegexp(TypeError, msg):
e()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test seems too redundant for now.
TypeError happens always when no positional arguments.
How the generic function defined is not important.

@methane
Copy link
Member

methane commented Jul 9, 2018

f"{func.__name__} requires at least 1 positional argument" may be better, if we can assume func.__name__ is available always.

I believe singledispatch requires positional argument by design, intentionally.
But I want @ambv review before merge.

@corona10
Copy link
Member Author

corona10 commented Jul 9, 2018

@methane
Thanks for the quick review.
Updated!
One more thing, we need to add tags needs backport to 3.7 / 3.6.

@methane methane changed the title bpo-33967: Improve functools.singledispatch exception messages bpo-33967: singledispatch raises TypeError when no positional arguments Jul 9, 2018
@@ -0,0 +1,2 @@
Improve functools.singledispatch exception messages when calling without
arguments
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error message is not important here. (We won't backport such improvements)

functools.singledispatch now raises TypeError instead of IndexError when no
positional arguments are passed.

@methane methane added type-bug An unexpected behavior, bug, or error needs backport to 3.6 labels Jul 9, 2018
@corona10
Copy link
Member Author

corona10 commented Jul 9, 2018

@methane I've updated news

Lib/functools.py Outdated
@@ -817,6 +817,10 @@ def register(cls, func=None):
return func

def wrapper(*args, **kw):
if not args:
raise TypeError(f'{func.__name__} requires at least '
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

func can be not having the __name__ attribute in general case. This PR can break a code which use singledispatch() with custom callables.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also this change creates a new reference to func linked to from wrapper. It may be better to keep a reference just to the name. E.g.

funcname = getattr(func, '__name__', 'singledispatch function')
def wrapper(*args, **kw):
    # use funcname

@corona10
Copy link
Member Author

I fixed it

@methane methane merged commit 445f1b3 into python:master Jul 10, 2018
@miss-islington
Copy link
Contributor

Thanks @corona10 for the PR, and @methane for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7.
🐍🍒⛏🤖

@bedevere-bot
Copy link

GH-8220 is a backport of this pull request to the 3.7 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 10, 2018
…H-8184)

(cherry picked from commit 445f1b3)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
@bedevere-bot
Copy link

GH-8221 is a backport of this pull request to the 3.6 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 10, 2018
…H-8184)

(cherry picked from commit 445f1b3)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
miss-islington added a commit that referenced this pull request Jul 10, 2018
(cherry picked from commit 445f1b3)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
miss-islington added a commit that referenced this pull request Jul 10, 2018
(cherry picked from commit 445f1b3)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
def f(*args):
pass
msg = 'f requires at least 1 positional argument'
with self.assertRaisesRegexp(TypeError, msg):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assertRaisesRegexp() is deprecated, so this test fails when test_functools is run with -Werror (see #8261).

@corona10 corona10 deleted the bpo-33967 branch November 22, 2018 11:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants