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 dmalcolm
Recipients christian.heimes, dmalcolm, doko, lemburg, loewis, pitrou
Date 2010-01-13.20:18:37
SpamBayes Score 4.8150578e-05
Marked as misclassified No
Message-id <1263413918.72.0.813773584792.issue4555@psf.upfronthosting.co.za>
In-reply-to
Content
Re: msg #77350:
> I propose to simply filter out init[_a-z]+ from the set of "bad" 
> symbols.

I'm attaching a patch (to trunk) to Makefile.pre.in which filters out such symbols.

Relevant part of output of "make smelly" on my svn build with this patch:
nm -p libpython2.7.a | \
		sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | \
		grep -v -E "^init[_a-z]+" | sort -u; \

_add_one_to_index_C
_add_one_to_index_F
asdl_int_seq_new
asdl_seq_new
History
Date User Action Args
2010-01-13 20:18:39dmalcolmsetrecipients: + dmalcolm, lemburg, loewis, doko, pitrou, christian.heimes
2010-01-13 20:18:38dmalcolmsetmessageid: <1263413918.72.0.813773584792.issue4555@psf.upfronthosting.co.za>
2010-01-13 20:18:37dmalcolmlinkissue4555 messages
2010-01-13 20:18:37dmalcolmcreate