[issue38290] cleanup ababstractproperty in typing.py

2019-09-27 Thread Ivan Levkivskyi
Change by Ivan Levkivskyi : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue38290] cleanup ababstractproperty in typing.py

2019-09-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +16012 pull_request: https://github.com/python/cpython/pull/16433 ___ Python tracker ___

[issue38290] cleanup ababstractproperty in typing.py

2019-09-27 Thread hongweipeng
Change by hongweipeng : -- keywords: +patch pull_requests: +16011 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16432 ___ Python tracker ___

[issue38290] cleanup ababstractproperty in typing.py

2019-09-27 Thread hongweipeng
New submission from hongweipeng : `abc.ababstractproperty` was deprecated since version 3.3. https://docs.python.org/3/library/abc.html#abc.abstractproperty I checked the code and found that only `typing.py` is still used. I created a PR and replaced it with the one written in the