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, dmalcolm, doko, lemburg, loewis, pitrou
Date 2012-11-26.15:15:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353942951.79.0.776184138479.issue4555@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2012-11-26 15:15:51christian.heimessetrecipients: + christian.heimes, lemburg, loewis, doko, pitrou, dmalcolm
2012-11-26 15:15:51christian.heimessetmessageid: <1353942951.79.0.776184138479.issue4555@psf.upfronthosting.co.za>
2012-11-26 15:15:51christian.heimeslinkissue4555 messages
2012-11-26 15:15:51christian.heimescreate