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 alisson276
Recipients alisson276
Date 2021-11-29.13:15:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1638191713.81.0.622193348112.issue45926@roundup.psfhosted.org>
In-reply-to
Content
`functools.singledispatchmethod` doesn't handle named arguments. Ex:

```python
from functools import singledispatchmethod

class Test:
    def __init__(self):
        ...

    @singledispatchmethod
    def get(self, filters):
        return 'Not Implemented!'

    @get.register
    def _(self, filters: dict):
        for k, v in filters.items():
            print(k, ' => ' ,  v)

    @get.register
    def _(self, filters: list):
        for f in filters:
            print(f)

if __name__ == '__main__':
    t = Test()
    t.get({'a': 'A'})
    t.get(['a'])
    t.get(filters={'a': 'A'})
```

This will raise an error:
```
a  =>  A
a
Traceback (most recent call last):
  File "/Users/alisson.oliveira/Farfetch/Git/blueprints-package/main.py", line 33, in <module>
    t.get(filters={'a': 'A'})
  File "/usr/local/Cellar/python@3.9/3.9.9/Frameworks/Python.framework/Versions/3.9/lib/python3.9/functools.py", line 926, in _method
    method = self.dispatcher.dispatch(args[0].__class__)
IndexError: tuple index out of range
```

the problem is the lib always assume positional arguments in line 194: https://github.com/python/cpython/blob/main/Lib/functools.py#L914
History
Date User Action Args
2021-11-29 13:15:13alisson276setrecipients: + alisson276
2021-11-29 13:15:13alisson276setmessageid: <1638191713.81.0.622193348112.issue45926@roundup.psfhosted.org>
2021-11-29 13:15:13alisson276linkissue45926 messages
2021-11-29 13:15:13alisson276create