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 christian.heimes
Recipients christian.heimes
Date 2008-12-06.01:29:08
SpamBayes Score 2.1733818e-05
Marked as misclassified No
Message-id <1228526950.62.0.716618083363.issue4555@psf.upfronthosting.co.za>
In-reply-to
Content
I just found about the smelly build target. It checks for smelly exports.

$ make smelly
[...]
nm -p libpython2.6.a | \
                sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \

asdl_int_seq_new
asdl_seq_new
init_ast
init_codecs
initerrno
initgc
initimp
initposix
initpwd
initsignal
init_sre
init_symtable
initthread
initxxsubtype
initzipimport

nm -p libpython3.0.a | \
                sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \

_add_one_to_index_C
_add_one_to_index_F
asdl_int_seq_new
asdl_seq_new

These should be checked and fixed.
History
Date User Action Args
2008-12-06 01:29:10christian.heimessetrecipients: + christian.heimes
2008-12-06 01:29:10christian.heimessetmessageid: <1228526950.62.0.716618083363.issue4555@psf.upfronthosting.co.za>
2008-12-06 01:29:09christian.heimeslinkissue4555 messages
2008-12-06 01:29:08christian.heimescreate