[issue37983] macOS: os.lchmod() incorrectly removed by 2.7.16

2019-08-29 Thread Ned Deily
Ned Deily added the comment: lchmod is one of a number of os functions that is not available on older versions of macOS. Chances are you are using a Python binary (possibly one supplied by a python.org installer) that was built to be used on a range of macOS versions and the oldest version d

[issue37983] macOS: os.lchmod() incorrectly removed by 2.7.16

2019-08-29 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue37983] macOS: os.lchmod() incorrectly removed by 2.7.16

2019-08-29 Thread Keith F. Kelly
New submission from Keith F. Kelly : Apparently the fix for https://bugs.python.org/issue34652 was incorrect, or got incorrectly backported to, the 2.7 tree, because as of 2.7.16, the os.lchmod() built-in API is unexpectedly missing on MacOS, which is breaking our existing code. -- c