Message192661
| 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 |
|