Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Python/traceback.c
Original file line number Diff line number Diff line change
Expand Up @@ -1167,11 +1167,10 @@

The caller is responsible to call PyErr_CheckSignals() to call Python signal
handlers if signals were received. */
const char*
void
PyUnstable_DumpTraceback(int fd, PyThreadState *tstate)

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows / Build and test (x64, switch-case)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [D:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows / Build and test (x64, tail-call)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [D:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows (free-threading) / Build and test (x64, tail-call)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [D:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows (free-threading) / Build and test (x64, switch-case)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [D:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Hypothesis tests on Ubuntu

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Ubuntu / build and test (ubuntu-26.04-arm)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows / Build and test (arm64, switch-case)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [C:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Ubuntu (free-threading) / build and test (ubuntu-26.04)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Ubuntu (bolt) / build and test (ubuntu-26.04)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Cross build Linux

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Ubuntu / build and test (ubuntu-26.04)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Ubuntu (free-threading) / build and test (ubuntu-26.04-arm)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Windows (free-threading) / Build and test (arm64, switch-case)

'PyUnstable_DumpTraceback': 'void (int,PyThreadState *)' differs in levels of indirection from 'const char *(int,PyThreadState *)' [C:\a\cpython\cpython\PCbuild\_freeze_module.vcxproj]

Check failure on line 1171 in Python/traceback.c

View workflow job for this annotation

GitHub Actions / Address sanitizer (ubuntu-26.04)

conflicting types for ‘PyUnstable_DumpTraceback’; have ‘void(int, PyThreadState *)’ {aka ‘void(int, struct _ts *)’}
{
dump_traceback(fd, tstate, 1);
return NULL;
}

#if defined(HAVE_PTHREAD_GETNAME_NP) || defined(HAVE_PTHREAD_GET_NAME_NP)
Expand Down
Loading