[issue32380] functools.singledispatch interacts poorly with methods

2019-03-27 Thread Inada Naoki
Inada Naoki added the comment: New changeset bc284f0c7a9a7a9a4bf12c680823023a6770ce06 by Inada Naoki in branch 'master': bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580) https://github.com/python/cpython/commit/bc284f0c7a9a7a9a4bf12c680823023a6770ce06 -- nosy:

[issue32380] functools.singledispatch interacts poorly with methods

2019-03-27 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +12524 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32380] functools.singledispatch interacts poorly with methods

2018-05-28 Thread Ethan Smith
Ethan Smith added the comment: This was fixed, so I think it can be closed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32380] functools.singledispatch interacts poorly with methods

2018-05-26 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c651275afe8515b2cf70b8152e19ce39df88f0dd by Łukasz Langa (Ethan Smith) in branch 'master': bpo-32380: Create functools.singledispatchmethod (#6306) https://github.com/python/cpython/commit/c651275afe8515b2cf70b8152e19ce39df88f0dd

[issue32380] functools.singledispatch interacts poorly with methods

2018-04-02 Thread Łukasz Langa
Łukasz Langa added the comment: +1 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue32380] functools.singledispatch interacts poorly with methods

2018-03-29 Thread Nick Coghlan
Nick Coghlan added the comment: Added Łukasz to the nosy list, as I'd like his +1 before accepting this change (I do still think it's a good idea, for the same reasons we added partialmethod). -- nosy: +lukasz.langa, ncoghlan

[issue32380] functools.singledispatch interacts poorly with methods

2018-03-29 Thread Ethan Smith
Change by Ethan Smith : -- versions: +Python 3.8 -Python 3.6 ___ Python tracker ___ ___

[issue32380] functools.singledispatch interacts poorly with methods

2018-03-29 Thread Ethan Smith
Change by Ethan Smith : -- pull_requests: +6024 ___ Python tracker ___ ___

[issue32380] functools.singledispatch interacts poorly with methods

2017-12-22 Thread Ethan Smith
Change by Ethan Smith : -- keywords: +patch pull_requests: +4873 stage: -> patch review ___ Python tracker ___

[issue32380] functools.singledispatch interacts poorly with methods

2017-12-22 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: I have also noticed this problem and I like the idea. It appeared some time ago on python-ideas, but no one has written a patch. -- nosy: +levkivskyi ___ Python tracker

[issue32380] functools.singledispatch interacts poorly with methods

2017-12-19 Thread Ethan Smith
New submission from Ethan Smith : Consider the following: from functools import singledispatch class Dispatch: @singledispatch def foo(self, a): return a @foo.register(int) def _(self, a): return "int" @foo.register(str) def _(self,