Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Emscripten trampolines not quite right since #106219 #121700

Closed
Labels
type-bugAn unexpected behavior, bug, or error
@hoodmane

Description

@hoodmane

Bug report

Bug description:

pycore_emscripten_trampoline.h defines_PyCFunctionWithKeywords_TrampolineCall as a macro butpycore_object.h tries to declare it. This leads to a compile error. The fix is to delete the declaration frompycore_object.h.

--- a/Include/internal/pycore_object.h+++ b/Include/internal/pycore_object.h@@ -733,13 +733,7 @@ PyAPI_FUNC(PyObject*) _PyObject_GetState(PyObject *);  * Third party code unintentionally rely on problematic fpcasts. The call  * trampoline mitigates common occurrences of bad fpcasts on Emscripten.  */-#if defined(__EMSCRIPTEN__) && defined(PY_CALL_TRAMPOLINE)-#define _PyCFunction_TrampolineCall(meth, self, args) \-    _PyCFunctionWithKeywords_TrampolineCall( \-        (*(PyCFunctionWithKeywords)(void(*)(void))(meth)), (self), (args), NULL)-extern PyObject* _PyCFunctionWithKeywords_TrampolineCall(-    PyCFunctionWithKeywords meth, PyObject *, PyObject *, PyObject *);-#else+#if !(defined(__EMSCRIPTEN__) && defined(PY_CALL_TRAMPOLINE)) #define _PyCFunction_TrampolineCall(meth, self, args) \     (meth)((self), (args)) #define _PyCFunctionWithKeywords_TrampolineCall(meth, self, args, kw) \

CPython versions tested on:

CPython main branch

Operating systems tested on:

Other

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    type-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp