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 Rhamphoryncus, asksol, benjamin.peterson, christian.heimes, jnoller, loewis, roudkerk
Date 2013-07-08.15:32:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373297568.94.0.545751059312.issue3093@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.4 no longer exports symbols without a Py or _Py prefix:

$ nm -p build/lib.linux-x86_64-3.4-pydebug/_multiprocessing.cpython-34dm.so | sed -n "/ [TDB] /s/.* //p" | sort
__bss_start
_edata
_end
_fini
_init
PyInit__multiprocessing
_PyMp_SemLockType
_PyMp_SetError

Python 3.3 still does but I don't like to modify the ABI in a patch release.

$ nm -p build/lib.linux-x86_64-3.3-pydebug/_multiprocessing.cpython-33dm.so | sed -n "/ [TDB] /s/.* //p" | sort
__bss_start
BufferTooShort
_edata
_end
_fini
_init
mp_SetError
ProcessError
PyInit__multiprocessing
SemLockType
History
Date User Action Args
2013-07-08 15:32:49christian.heimessetrecipients: + christian.heimes, loewis, Rhamphoryncus, roudkerk, benjamin.peterson, jnoller, asksol
2013-07-08 15:32:48christian.heimessetmessageid: <1373297568.94.0.545751059312.issue3093@psf.upfronthosting.co.za>
2013-07-08 15:32:48christian.heimeslinkissue3093 messages
2013-07-08 15:32:48christian.heimescreate