Christian Heimes added the comment:
For Python 3.3 and 3.4 make smelly still lists two exported symbols.
asdl_int_seq_new
asdl_seq_new
Do we have to check the modules, too? Some of them like _ctypes and _decimal
export a lot of symbols. Here is a small shell snippet for Makefile.
for MOD in `find $(srcdir)/build -name '*.s[ol]' ` ; do \
EXPORT=`nm -p $$MOD | sed -n "/ [TDB] /s/.* //p" | \
grep -E -v "^_*Py|^_init|^_fini" | sort -u`; \
if [ -n "$$EXPORT" ]; then \
echo $$MOD; \
echo $$EXPORT; \
fi \
done
----------
versions: +Python 3.3, Python 3.4 -Python 2.7, Python 3.1
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue4555>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com