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.

classification
Title: global symbols in shared libpython not prefixed with Py or _Py
Type: Stage:
Components: Versions:
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Smelly exports (global symbols in python not prefixed with Py or _Py)
View: 4555
Assigned To: Nosy List: doko, pitrou
Priority: normal Keywords:

Created on 2009-03-28 21:57 by doko, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg84334 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2009-03-28 21:57
There are four global symbols in libpython, which have are globally
defined, and don't have a Py prefix. Would it be possible to define
those with a _Py prefix instead?
msg84339 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-03-28 22:18
What are those symbols?
msg84405 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2009-03-29 14:23
sorry, forgot to add these ...

 _add_one_to_index_C
 _add_one_to_index_F
 asdl_int_seq_new
 asdl_seq_new
msg84407 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-03-29 14:32
Looks like this is a duplicate of #4555 actually :)
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49841
2009-03-29 14:33:00pitrousetstatus: open -> closed
resolution: duplicate
superseder: Smelly exports (global symbols in python not prefixed with Py or _Py)
messages: + msg84407
2009-03-29 14:23:32dokosetmessages: + msg84405
2009-03-28 22:18:15pitrousetnosy: + pitrou
messages: + msg84339
2009-03-28 21:57:04dokocreate