[issue15411] os.chmod() does not follow symlinks on Windows

2019-04-26 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue15411] os.chmod() does not follow symlinks on Windows

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue15411] os.chmod() does not follow symlinks on Windows

2014-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a patch review on this please as it's holding up #13837. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.4 ___ Python tracker _

[issue15411] os.chmod() does not follow symlinks on Windows

2013-11-05 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue15411] os.chmod() does not follow symlinks on Windows

2012-10-07 Thread Hynek Schlawack
Changes by Hynek Schlawack : -- nosy: +brian.curtin, tim.golden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15411] os.chmod() does not follow symlinks on Windows

2012-07-27 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15411] os.chmod() does not follow symlinks on Windows

2012-07-21 Thread Atsuo Ishimoto
Changes by Atsuo Ishimoto : Added file: http://bugs.python.org/file26464/chmod_symlink_win32_2.patch ___ Python tracker ___ ___ Python-bugs-li

[issue15411] os.chmod() does not follow symlinks on Windows

2012-07-21 Thread Atsuo Ishimoto
Changes by Atsuo Ishimoto : Removed file: http://bugs.python.org/file26463/issue1492704_new_2.patch ___ Python tracker ___ ___ Python-bugs-lis

[issue15411] os.chmod() does not follow symlinks on Windows

2012-07-21 Thread Atsuo Ishimoto
Atsuo Ishimoto added the comment: Patch updated. Check symlinks only if supported by platform. -- Added file: http://bugs.python.org/file26463/issue1492704_new_2.patch ___ Python tracker __

[issue15411] os.chmod() does not follow symlinks on Windows

2012-07-21 Thread Atsuo Ishimoto
New submission from Atsuo Ishimoto : os.chmod() should check symlinks if followsymlinks option is True on Windows. This is a cause of failure of test case test.test_shutil.TestShutil.test_copymode_follow_symlinks (#13837) -- components: Library (Lib), Windows files: chmod_symlink