[issue38208] Simplify string.Template by using __init_subclass__()

2019-10-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38208] Simplify string.Template by using __init_subclass__()

2019-10-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 919f0bc8c904d3aa13eedb2dd1fe9c6b0555a591 by Serhiy Storchaka in branch 'master': bpo-38208: Simplify string.Template by using __init_subclass__(). (GH-16256) https://github.com/python/cpython/commit/919f0bc8c904d3aa13eedb2dd1fe9c6b0555a591 -

[issue38208] Simplify string.Template by using __init_subclass__()

2019-09-19 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue38208] Simplify string.Template by using __init_subclass__()

2019-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15851 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16256 ___ Python tracker ___

[issue38208] Simplify string.Template by using __init_subclass__()

2019-09-17 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently string.Template uses a metaclass. It is possible to get rid of it and use __init_subclass__() instead. -- components: Library (Lib) messages: 352699 nosy: serhiy.storchaka priority: normal severity: normal status: open title: Simplify st