This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Stray variable meth_idx in enable_symlink
Type: compile error Stage: resolved
Components: Windows Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: Alexander Riccio, paul.moore, python-dev, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2015-12-16 22:41 by Alexander Riccio, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg256553 - (view) Author: Alexander Riccio (Alexander Riccio) * Date: 2015-12-16 22:41
See: https://hg.python.org/cpython/file/tip/Modules/posixmodule.c#l12383

The variable int meth_idx is initialized but not used. I have no idea how it got there.
msg256651 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-12-18 08:03
New changeset 77bd84a6964a by Serhiy Storchaka in branch 'default':
Issues #25890, #25891, #25892: Removed unused variables in Windows code.
https://hg.python.org/cpython/rev/77bd84a6964a
History
Date User Action Args
2022-04-11 14:58:25adminsetgithub: 70079
2015-12-18 08:08:19serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: resolved
2015-12-18 08:03:38python-devsetnosy: + python-dev
messages: + msg256651
2015-12-18 07:33:58serhiy.storchakasetassignee: serhiy.storchaka

nosy: + serhiy.storchaka
versions: + Python 3.6
2015-12-16 22:41:41Alexander Ricciocreate