[New-bugs-announce] [issue4555] Smelly exports

Christian Heimes report at bugs.python.org
Sat Dec 6 02:29:10 CET 2008


New submission from Christian Heimes <lists at cheimes.de>:

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.

----------
components: Interpreter Core
messages: 77090
nosy: christian.heimes
priority: high
severity: normal
stage: test needed
status: open
title: Smelly exports
type: resource usage
versions: Python 2.5.3, Python 2.6, Python 2.7, Python 3.0, Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4555>
_______________________________________


More information about the New-bugs-announce mailing list