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.

Author vstinner
Recipients amaury.forgeotdarc, belopolsky, neologix, python-dev, rhettinger, tim.peters, vstinner
Date 2013-11-21.12:07:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385035632.11.0.561460581792.issue18874@psf.upfronthosting.co.za>
In-reply-to
Content
> It was discussed to reuse _Py_slist somewhere (I don't remember where) (...)

I did a quick search in Python code based using "link.*list" regex.

Structures linked in a single-linked list  (candidate for _Py_slist):

* Modules/_curses_panel.c: list_of_panels
* Modules/_elementtree.c: ParentLocator
* Modules/floatobject.c: free_list
* Objects/obmalloc.c: arena_object.freepools
* Python/compile.c: basicblock
* Python/pyarena.c: block
* Include/pystate.h: PyInterpreterState.tstate_head
* Python/thead.c: key

Structures linked in a double-linked list:

* Include/objimpl.h: PyGC_Head
* Include/object.c: PyObject (in debug mode)
* Modules/_collectionsmodule.c: block
* Objects/obmalloc.c: arena_object
* Include/weakrefobject.h: _PyWeakReference
History
Date User Action Args
2013-11-21 12:07:12vstinnersetrecipients: + vstinner, tim.peters, rhettinger, amaury.forgeotdarc, belopolsky, neologix, python-dev
2013-11-21 12:07:12vstinnersetmessageid: <1385035632.11.0.561460581792.issue18874@psf.upfronthosting.co.za>
2013-11-21 12:07:12vstinnerlinkissue18874 messages
2013-11-21 12:07:11vstinnercreate