[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread miss-islington
miss-islington added the comment: New changeset d27a9b1695a1b46c81b3a83a7a35034791265d89 by Miss Islington (bot) in branch '3.7': bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) https://github.com/python/cpython/commit/d27a9b1695a1b46c81b3a83a7a35034791265d89 -- __

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread miss-islington
miss-islington added the comment: New changeset 6b6935e563562c427d5bb1b2864d6a2fed0e74fa by Miss Islington (bot) in branch '3.8': bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) https://github.com/python/cpython/commit/6b6935e563562c427d5bb1b2864d6a2fed0e74fa -- nos

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +16279 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16693 ___ Python tracker ___ __

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +16280 pull_request: https://github.com/python/cpython/pull/16694 ___ Python tracker ___ __

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-10 Thread STINNER Victor
STINNER Victor added the comment: New changeset a05fcd3c7adf6e3a0944da8cf80a3346882e9b3b by Victor Stinner (Dong-hee Na) in branch 'master': bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) https://github.com/python/cpython/commit/a05fcd3c7adf6e3a0944da8cf80a3346882e9b3b ---

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: patch review -> versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +16274 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16688 ___ Python tracker ___

[issue38425] Remove warning: ‘res’ may be used uninitialized in this function

2019-10-09 Thread Dong-hee Na
New submission from Dong-hee Na : Python/Python-ast.c: In function ‘PyAST_obj2mod’: Python/Python-ast.c:10253:12: warning: ‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized] CentOS Linux release 7.6.1810 gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36) -- assignee: cor