[issue37392] Remove sys.setcheckinterval()

2019-06-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 080b6b40fa6c6ddc79dcfcadab575bb1be3f47e9 by Victor Stinner (Xtreak) in branch 'master': bpo-37392: Update the dir(sys) in module tutorial (GH-14365) https://github.com/python/cpython/commit/080b6b40fa6c6ddc79dcfcadab575bb1be3f47e9 --

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +14182 pull_request: https://github.com/python/cpython/pull/14365 ___ Python tracker ___

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: I prefer to remove deprecated functions early in the 3.9 dev cycle, so we have more time for feedback. If something goes wrong, we can discuss reverting this removal before 3.9.0 final release. -- resolution: -> fixed stage: patch review -> resolved

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 36456df13843c5b8a1fb5a6022ab9ed1fe2a11c5 by Victor Stinner in branch 'master': bpo-37392: Remove sys.setcheckinterval() (GH-14355) https://github.com/python/cpython/commit/36456df13843c5b8a1fb5a6022ab9ed1fe2a11c5 -- __

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: These functions were deprecated by this change: commit 074e5ed974be65fbcfe75a4c0529dbc53f13446f Author: Antoine Pitrou Date: Tue Nov 10 19:50:40 2009 + Merge in the new GIL. -- ___ Python tracker

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: Attached PR 14355 removes these functions. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +14172 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14355 ___ Python tracker ___ _

[issue37392] Remove sys.setcheckinterval()

2019-06-24 Thread STINNER Victor
New submission from STINNER Victor : sys.getcheckinterval() and sys.setcheckinterval() are deprecated since Python 3.2, it's now time to remove them! -- components: Interpreter Core messages: 346454 nosy: vstinner priority: normal severity: normal status: open title: Remove sys.setchec