[issue33666] Document removal of os.errno

2018-07-29 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue33666] Document removal of os.errno

2018-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 78c54de575fd121d91749c2316fef1949d76fb07 by Petr Viktorin (Miss Islington (bot)) in branch '3.7': bpo-33666: Add what's new entry for os.errno removal (GH-8497) (GH-8526) https://github.com/python/cpython/commit/78c54de575fd121d91749c2316fef1949d

[issue33666] Document removal of os.errno

2018-07-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +8044 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33666] Document removal of os.errno

2018-07-28 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 1d2dafa249c7fb34f3d24e7a77d1bea02907d92b by Petr Viktorin (INADA Naoki) in branch 'master': bpo-33666: Add what's new entry for os.errno removal (GH-#8497) https://github.com/python/cpython/commit/1d2dafa249c7fb34f3d24e7a77d1bea02907d92b --

[issue33666] Document removal of os.errno

2018-07-27 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch pull_requests: +8015 stage: resolved -> patch review ___ Python tracker ___ ___ Python-b

[issue33666] Document removal of os.errno

2018-05-29 Thread STINNER Victor
STINNER Victor added the comment: Petr Viktorin started a thread on python-ideas as well: https://mail.python.org/pipermail/python-ideas/2018-May/051098.html -- ___ Python tracker ___

[issue33666] Document removal of os.errno

2018-05-29 Thread STINNER Victor
STINNER Victor added the comment: I like the idea of a generic sentence explaining that regularly we removed aliases to speedup Python startup time can remove aliases on purpose. msg317876: "Here is a list of all names removed in 3.7 (except modules that was removed as a whole): (... long li

[issue33666] Document removal of os.errno

2018-05-29 Thread Petr Viktorin
Petr Viktorin added the comment: > Actually removing re._pattern_type, uuid._uuid_generate_time and some private > names in the typing module broke several third-party projects. Those have underscores; that explicitly marks them as private/use at your own risk/will break in future versions.

[issue33666] Document removal of os.errno

2018-05-29 Thread Petr Viktorin
Petr Viktorin added the comment: > Even if it is documented, arn't people know it by running their code on > Python 3.7? How the document help them? "What's new" is the right place to check if something breaks for you on Python 3.7. Let's make it useful. > It's very easy to know `errno` mo

[issue33666] Document removal of os.errno

2018-05-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Actually removing re._pattern_type, uuid._uuid_generate_time and some private names in the typing module broke several third-party projects. See for example: https://github.com/search?q=_pattern_type&type=Issues https://github.com/search?q=_uuid_generate_ti

[issue33666] Document removal of os.errno

2018-05-29 Thread INADA Naoki
INADA Naoki added the comment: Even if it is documented, arn't people know it by running their code on Python 3.7? How the document help them? It's very easy to know `errno` module when find ImportError. And it's much easier than checking "waht's new" document. So I doubt it's worth. And

[issue33666] Document removal of os.errno

2018-05-29 Thread Petr Viktorin
Petr Viktorin added the comment: Nothing there strikes me to be as prevalent or as discoverable as os.errno. -- ___ Python tracker ___

[issue33666] Document removal of os.errno

2018-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: And here is a list of names removed in 3.6: asynchat.fifo asyncio.coroutines.futures asyncio.futures.Error asyncio.futures.reprlib asyncio.tasks.linecache asyncio.tasks.traceback copy.builtins copy._copy_with_constructor copy._copy_with_copy_method copy._Empt

[issue33666] Document removal of os.errno

2018-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a list of all names removed in 3.7 (except modules that was removed as a whole): abc.WeakSet argparse._collections argparse._copy argparse._ensure_value argparse._textwrap ast._NUM_TYPES asyncio.async asyncio.base_events.compat asyncio.base_events.co

[issue33666] Document removal of os.errno

2018-05-28 Thread Petr Viktorin
Change by Petr Viktorin : -- title: os.errno gone absent without official leave (AWOL) -> Document removal of os.errno ___ Python tracker ___ __