[issue30732] json.dumps() lacks information about RecursionError related to default function
Changes by svelankar : -- pull_requests: +2907 ___ Python tracker <http://bugs.python.org/issue30732> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30732] json.dumps() lacks information about RecursionError related to default function
Changes by svelankar : -- pull_requests: +2908 ___ Python tracker <http://bugs.python.org/issue30732> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue31023] Git Bootcamp and Cheat Sheet - Section 32.10 - Creating a Pull request needs an additional step
New submission from svelankar: Section 32.10 - Creating a Pull Request Step 2 should be changed to Step 3 and so on. And a new step i.e. step 2 as "Press new pull request button" -- assignee: docs@python components: Documentation messages: 299039 nosy: docs@python, svelankar priority: normal severity: normal status: open title: Git Bootcamp and Cheat Sheet - Section 32.10 - Creating a Pull request needs an additional step ___ Python tracker <http://bugs.python.org/issue31023> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue31501] Operator precedence description for arithmetic operators
New submission from svelankar: Description for the operator precedence should read "Multiplication, matrix multiplication division, remainder" instead of "Multiplication, matrix multiplication, division, floor division, remainder. Section 6.16. Operator precedence I feel this would help a new comer to python to instantly figure out what does "//" stand for. -- assignee: docs@python components: Documentation messages: 302391 nosy: Mariatta, docs@python, svelankar priority: normal severity: normal status: open title: Operator precedence description for arithmetic operators versions: Python 3.7 ___ Python tracker <https://bugs.python.org/issue31501> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue31501] Operator precedence description for arithmetic operators
Changes by svelankar : -- keywords: +patch pull_requests: +3623 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue31501> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29749] Outdated int() docstring
svelankar added the comment: int docstring is the only one that needs to be changed. docstrings for float,tuple and list look fine to me. -- nosy: +svelankar ___ Python tracker <http://bugs.python.org/issue29749> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29749] Outdated int() docstring
svelankar added the comment: True, but the docstring says "return 0 if no arguments are given". So please let me know, if you want me to still change it i.e. add int() or keep it as it is. Thanks. -- ___ Python tracker <http://bugs.python.org/issue29749> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29682] Possible missing NULL check in pyexpat
Changes by svelankar : -- pull_requests: +469 ___ Python tracker <http://bugs.python.org/issue29682> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29674] Use GCC __attribute__((alloc_size(x, y))) on PyMem_Malloc() functions
svelankar added the comment: So once these functions are decorated with this attribute, what kind of testing/validation you have in mind, please let me know. -- nosy: +svelankar ___ Python tracker <http://bugs.python.org/issue29674> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29674] Use GCC __attribute__((alloc_size(x, y))) on PyMem_Malloc() functions
svelankar added the comment: Ok. As a side note, while compiling python source using gcc 7 [gcc (GCC) 7.0.1 20170314 (experimental)], few places in the code with case fallthrough (must be intentional) triggered this warning - -Wimplicit-fallthrough=. We can either disable this warning altogether (downside being unintended fallthroughs will go unnoticed) OR pass some flag [https://developers.redhat.com/blog/2017/03/10/wimplicit-fallthrough-in-gcc-7/] to -Wimplicit-fallthrough=. so that it does a regex match on the comments defined [something like /* fall through code */] in that specific part of the code and suppresses the warning. The downside to this is that these comments might have to be inserted wherever they are missing and new code introduced in the future with intentional fallthroughs need to write those comments. Please let me know. -- ___ Python tracker <http://bugs.python.org/issue29674> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29674] Use GCC __attribute__((alloc_size(x, y))) on PyMem_Malloc() functions
Changes by svelankar : -- pull_requests: +552 ___ Python tracker <http://bugs.python.org/issue29674> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29692] contextlib.contextmanager may incorrectly unchain RuntimeError
Changes by svelankar : -- pull_requests: +794 ___ Python tracker <http://bugs.python.org/issue29692> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29692] contextlib.contextmanager may incorrectly unchain RuntimeError
Changes by svelankar : -- pull_requests: +1131 ___ Python tracker <http://bugs.python.org/issue29692> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29692] contextlib.contextmanager may incorrectly unchain RuntimeError
Changes by svelankar : -- nosy: +svelankar ___ Python tracker <http://bugs.python.org/issue29692> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29447] Add os.PathLike support to the tempfile module
Changes by svelankar : -- pull_requests: +1519 ___ Python tracker <http://bugs.python.org/issue29447> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29447] Add os.PathLike support to the tempfile module
Changes by svelankar : -- nosy: +svelankar ___ Python tracker <http://bugs.python.org/issue29447> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com