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: remove resourceLoader related code since it's deprecated
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: postponed
Dependencies: Superseder:
Assigned To: Nosy List: barry, brett.cannon, jayyin11043
Priority: normal Keywords:

Created on 2018-01-29 22:00 by jayyin11043, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg311177 - (view) Author: Jay Yin (jayyin11043) * Date: 2018-01-29 22:00
I recently discovered in the documentation within the code and recent discussions with Barry, that ResourceLoader is deprecated and was wondering if we wanted to remove the code exclusively pertaining to ResourceLoader for clarity and to remove unused code. (PS if this is will be done I'll gladly contribute to doing so)
msg311194 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2018-01-29 22:40
We can't remove the code because it might still be used by third parties.  Deprecation generally means we inform users that they shouldn't use the code any more (possibly with a DeprecationWarning, although we decided not to do that in this case).  We definitely won't remove the code in 3.7.  We can think about it for 3.8
msg311207 - (view) Author: Jay Yin (jayyin11043) * Date: 2018-01-30 00:55
Alright I see, so I guess I'll set this as "postponed" and close it?
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 76895
2018-01-30 02:28:06jayyin11043setstatus: open -> closed
resolution: postponed
stage: resolved
2018-01-30 00:55:44jayyin11043setmessages: + msg311207
versions: + Python 3.7
2018-01-29 22:40:13barrysetnosy: + barry, brett.cannon

messages: + msg311194
versions: - Python 3.7
2018-01-29 22:01:01jayyin11043setcomponents: + Library (Lib)
2018-01-29 22:00:44jayyin11043create