This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: cleanup ababstractproperty in typing.py
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hongweipeng
Priority: normal Keywords: patch

Created on 2019-09-27 07:13 by hongweipeng, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16432 merged hongweipeng, 2019-09-27 07:13
PR 16433 merged miss-islington, 2019-09-27 07:56
Messages (1)
msg353348 - (view) Author: hongweipeng (hongweipeng) * Date: 2019-09-27 07:13
`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 documentation.
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82471
2019-09-27 08:16:53levkivskyisetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.8
2019-09-27 07:56:47miss-islingtonsetpull_requests: + pull_request16012
2019-09-27 07:13:59hongweipengsetkeywords: + patch
stage: patch review
pull_requests: + pull_request16011
2019-09-27 07:13:20hongweipengcreate