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.
Created on 2012年09月02日 14:29 by Robin.Schreiber, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| xxsubtype_pep3121-384_v0.patch | Robin.Schreiber, 2012年09月02日 14:29 | |||
| Messages (4) | |||
|---|---|---|---|
| msg169701 - (view) | Author: Robin Schreiber (Robin.Schreiber) * (Python triager) | Date: 2012年09月02日 14:29 | |
Changes proposed in PEP3121 and PEP384 have now been applied to the xxsubtype module! |
|||
| msg170069 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2012年09月09日 00:05 | |
It looks like your patch will result in reference leaks if type creation fails. I think you should add Py_DECREF(m) before error returns. |
|||
| msg372082 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年06月22日 09:41 | |
The PEP 3121 part is fixed by: commit d5cacbb1d9c3edc02bf0ba01702e7c06da5bc318 Author: Nick Coghlan <ncoghlan@gmail.com> Date: Sat May 23 22:24:10 2015 +1000 PEP 489: Multi-phase extension module initialization Known limitations of the current implementation: - documentation changes are incomplete - there's a reference leak I haven't tracked down yet The leak is most visible by running: ./python -m test -R3:3 test_importlib However, you can also see it by running: ./python -X showrefcount Importing the array or _testmultiphase modules, and then deleting them from both sys.modules and the local namespace shows significant increases in the total number of active references each cycle. By contrast, with _testcapi (which continues to use single-phase initialisation) the global refcounts stabilise after a couple of cycles. |
|||
| msg383281 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年12月18日 00:47 | |
See bpo-41111 "[C API] Convert a few stdlib extensions to the limited C API (PEP 384)" for the PEP 384 part. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:35 | admin | set | github: 60052 |
| 2020年12月18日 00:47:20 | vstinner | set | status: open -> closed resolution: fixed messages: + msg383281 stage: resolved |
| 2020年06月22日 09:41:41 | vstinner | set | nosy:
+ vstinner messages: + msg372082 |
| 2012年11月08日 13:23:55 | Robin.Schreiber | set | keywords: + pep3121, - patch |
| 2012年09月09日 00:05:27 | belopolsky | set | messages: + msg170069 |
| 2012年09月02日 22:47:49 | belopolsky | link | issue15787 dependencies |
| 2012年09月02日 14:29:27 | Robin.Schreiber | create | |