New submission from Ashwini Chaudhary:
>From this question I noticed that super() doesn't work with static methods
>with no arguments: https://stackoverflow.com/q/45498675/846892
My question is what's the issue with using __class__ for both arguments to
super() in case of s
Changes by Ashwini Chaudhary :
--
components: +Interpreter Core
___
Python tracker
<http://bugs.python.org/issue31118>
___
___
Python-bugs-list mailing list
Unsub
New submission from Ashwini Chaudhary:
I think the python docs are missing the behavior of += for lists. It actually
calls list.extend() but can't find that anywhere in docs expect in source code,
http://hg.python.org/cpython/file/2d2d4807a3ed/Objects/listobject.c#l892.
--
ass
Ashwini Chaudhary added the comment:
float('∞') raised ValueError as expected: ValueError: could not convert string
to float: '∞'
I am not sure how you ended up with 8.0.
--
nosy: +ashwch
___
Python tracker
<http://bug
Changes by Ashwini Chaudhary :
--
nosy: +montysinngh
___
Python tracker
<http://bugs.python.org/issue17383>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ashwini Chaudhary :
--
nosy: +montysinngh
___
Python tracker
<http://bugs.python.org/issue13510>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Ashwini Chaudhary:
Currently
namedtuple(https://hg.python.org/cpython/file/3.5/Lib/collections/__init__.py#l418)
sets the `__module__` attribute by looking up `__name__` in calling frame's
globals. As in the case of `typing.NamedTuple` it is always going to be
Ashwini Chaudhary added the comment:
Attached patch.
--
keywords: +patch
Added file: http://bugs.python.org/file41073/issue25665.patch
___
Python tracker
<http://bugs.python.org/issue25