[issue38896] Remove PyUnicode_ClearFreeList() function

2019-11-22 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue38896] Remove PyUnicode_ClearFreeList() function

2019-11-22 Thread STINNER Victor
STINNER Victor added the comment: New changeset d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113 by Victor Stinner in branch 'master': bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) https://github.com/python/cpython/commit/d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113 -- __

[issue38896] Remove PyUnicode_ClearFreeList() function

2019-11-22 Thread STINNER Victor
STINNER Victor added the comment: See also similar issue, bpo-37340 "Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() functions". -- ___ Python tracker ___ ___

[issue38896] Remove PyUnicode_ClearFreeList() function

2019-11-22 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +16839 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17354 ___ Python tracker ___ _

[issue38896] Remove PyUnicode_ClearFreeList() function

2019-11-22 Thread STINNER Victor
New submission from STINNER Victor : The PyUnicode_ClearFreeList() function does nothing since Python 3.3, since this change: commit d63a3b8beb4a0841cb59fb3515347ccaab34b733 Author: Martin v. Löwis Date: Wed Sep 28 07:41:54 2011 +0200 Implement PEP 393. I propose attached PR to remove