[issue25891] Stray variable meth_idx in enable_symlink

2015-12-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue25891] Stray variable meth_idx in enable_symlink

2015-12-18 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev ___

[issue25891] Stray variable meth_idx in enable_symlink

2015-12-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka versions: +Python 3.6 ___ Python tracker ___

[issue25891] Stray variable meth_idx in enable_symlink

2015-12-16 Thread Alexander Riccio
New submission from Alexander Riccio: 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. -- components: Windows messages: 256553 nosy: Alexander Riccio, paul.moore,