[issue26109] _Py_DumpTraceback should be PyAPI_FUNC

2016-08-02 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This has already been fixed in 4f5e4155c259 ( Python 3.5+) -- nosy: +berker.peksag resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue26109] _Py_DumpTraceback should be PyAPI_FUNC

2016-01-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Correction for searching: _Py_DumpTraceback and _Py_DumpTracebackThreads. They were added with the faulthandler module in issue11393. -- nosy: +haypo, serhiy.storchaka ___ Python tracker

[issue26109] _Py_DumpTraceback should be PyAPI_FUNC

2016-01-14 Thread John Malmberg
New submission from John Malmberg: The _PyDumpTraceback and _Py_DumpTracebackThreads routines in traceback.h are tagged with PyAPI_DATA attributes when they should be tagged with PyAPI_FUNC. For platforms that use those attributes, this can cause run-time issues if those methods are called. -