[issue39262] Unused error message in _sharedexception_bind

2020-01-08 Thread miss-islington
miss-islington added the comment: New changeset 45e5750a013291c5729e0ebad2b9e340fdffbd36 by Miss Islington (bot) in branch '3.8': closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908) https://github.com/python/cpython/commit/45e5750a013291c5729e0ebad2b9e34

[issue39262] Unused error message in _sharedexception_bind

2020-01-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 5cae042f686cc174e00093944dc118914c874b7c by Benjamin Peterson (Alex Henrie) in branch 'master': closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908) https://github.com/python/cpython/commit/5cae042f686cc1

[issue39262] Unused error message in _sharedexception_bind

2020-01-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +17325 pull_request: https://github.com/python/cpython/pull/17913 ___ Python tracker ___ __

[issue39262] Unused error message in _sharedexception_bind

2020-01-08 Thread Alex Henrie
Change by Alex Henrie : -- keywords: +patch pull_requests: +17319 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17908 ___ Python tracker ___

[issue39262] Unused error message in _sharedexception_bind

2020-01-08 Thread Alex Henrie
New submission from Alex Henrie : The function _sharedexception_bind currently has the following bit of code in two places: if (PyErr_ExceptionMatches(PyExc_MemoryError)) { failure = "out of memory copying exception type name"; } failure = "unable to encode and copy excepti