Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build with Py_LIMITED_API fails unknown type name ‘PyModuleDef_Slot’ #91071

Closed
tiran opened this issue Mar 3, 2022 · 8 comments
Closed
Assignees
Labels
3.11 only security fixes build The build process and cross-build interpreter-core (Objects, Python, Grammar, and Parser dirs)

Comments

@tiran
Copy link
Member

tiran commented Mar 3, 2022

BPO 46915
Nosy @vstinner, @tiran, @pablogsal
PRs
  • bpo-46915: Fix unknown type PyModuleDef_Slot regression #31667
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = 'https://github.com/vstinner'
    closed_at = None
    created_at = <Date 2022-03-03.21:15:25.727>
    labels = ['interpreter-core', 'build', '3.11']
    title = 'Build with Py_LIMITED_API fails unknown type name \xe2\x80\x98PyModuleDef_Slot\xe2\x80\x99'
    updated_at = <Date 2022-03-12.00:35:14.453>
    user = 'https://github.com/tiran'

    bugs.python.org fields:

    activity = <Date 2022-03-12.00:35:14.453>
    actor = 'vstinner'
    assignee = 'vstinner'
    closed = False
    closed_date = None
    closer = None
    components = ['Build', 'Interpreter Core']
    creation = <Date 2022-03-03.21:15:25.727>
    creator = 'christian.heimes'
    dependencies = []
    files = []
    hgrepos = []
    issue_num = 46915
    keywords = ['3.11regression']
    message_count = 7.0
    messages = ['414473', '414474', '414475', '414476', '414480', '414488', '414956']
    nosy_count = 3.0
    nosy_names = ['vstinner', 'christian.heimes', 'pablogsal']
    pr_nums = ['31667']
    priority = 'normal'
    resolution = None
    stage = 'resolved'
    status = 'open'
    superseder = None
    type = 'compile error'
    url = 'https://bugs.python.org/issue46915'
    versions = ['Python 3.11']

    @tiran
    Copy link
    Member Author

    tiran commented Mar 3, 2022

    Extension modules with bare "#define Py_LIMITED_API" without version fail to build with error:

    moduleobject.h:82:3: error: unknown type name ‘PyModuleDef_Slot’

    The issue was introduced in PR #75709 and bpo-45459. The type PyModuleDef_Slot is only defined when Py_LIMITED_API is set to Python 3.5.0 or higher.

    @tiran tiran self-assigned this Mar 3, 2022
    @tiran tiran added 3.11 only security fixes build The build process and cross-build interpreter-core (Objects, Python, Grammar, and Parser dirs) release-blocker labels Mar 3, 2022
    @tiran tiran self-assigned this Mar 3, 2022
    @tiran tiran added 3.11 only security fixes build The build process and cross-build interpreter-core (Objects, Python, Grammar, and Parser dirs) labels Mar 3, 2022
    @tiran
    Copy link
    Member Author

    tiran commented Mar 3, 2022

    The problem was first reported to PyCA cryptography project in bug pyca/cryptography#6929

    @tiran
    Copy link
    Member Author

    tiran commented Mar 3, 2022

    With fix:

    $ /tmp/python311/bin/pip3 install --no-binary :all: cryptography
    Collecting cryptography
      Using cached cryptography-36.0.1.tar.gz (572 kB)
      Installing build dependencies ... done
      Getting requirements to build wheel ... done
        Preparing wheel metadata ... done
    Requirement already satisfied: cffi>=1.12 in /tmp/python311/lib/python3.11/site-packages (from cryptography) (1.15.0)
    Requirement already satisfied: pycparser in /tmp/python311/lib/python3.11/site-packages (from cffi>=1.12->cryptography) (2.21)
    Building wheels for collected packages: cryptography
      Building wheel for cryptography (PEP 517) ... done
      Created wheel for cryptography: filename=cryptography-36.0.1-cp311-cp311-linux_x86_64.whl size=2628351 sha256=fb3cc21f8eaa546cd2c0123ea01a98bf92a9824fcdca36cfcf765b2c044bd186
      Stored in directory: /home/heimes/.cache/pip/wheels/6c/77/a9/3c4762d4e65bef5f742a304c507f9723ca3563a38d108618ad
    Successfully built cryptography
    Installing collected packages: cryptography
    Successfully installed cryptography-36.0.1

    Without fix:

    gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/tmp/python311/include/python3.11 -c build/temp.linux-x86_64-3.11/_openssl.c -o build/temp.linux-x86_64-3.11/build/temp.linux-x86_64-3.11/_openssl.o -Wconversion -Wno-error=sign-conversion
    In file included from /tmp/python311/include/python3.11/Python.h:66,
    from build/temp.linux-x86_64-3.11/_openssl.c:57:
    /tmp/python311/include/python3.11/moduleobject.h:82:3: error: unknown type name ‘PyModuleDef_Slot’
    82 | PyModuleDef_Slot *m_slots;
    | ^~~~~~~~~~~~~~~~

    @vstinner
    Copy link
    Member

    vstinner commented Mar 3, 2022

    I proposed a fix: #31668

    @vstinner
    Copy link
    Member

    vstinner commented Mar 3, 2022

    Fixed by 0b63215

    @tiran
    Copy link
    Member Author

    tiran commented Mar 3, 2022

    Please add a blurb entry.

    @tiran tiran reopened this Mar 3, 2022
    @tiran tiran assigned vstinner and unassigned tiran Mar 3, 2022
    @tiran tiran reopened this Mar 3, 2022
    @tiran tiran assigned vstinner and unassigned tiran Mar 3, 2022
    @vstinner
    Copy link
    Member

    Fixed by 0b63215

    This change is now part of Python 3.11 alpha6 released a few days ago. Python 3.11a6 news entries were merged into the Misc/NEWS.d/3.11.0a6.rst file.

    Please add a blurb entry.

    I consider that the changelog is for changes which impacts users when they update. The regression was introduced after 3.11 alpha5 but fixed before Python 3.11 alpha6. Only projects using contiguous integration were impacted. Only the cryptography project was impacted in practice.

    pyca/cryptography#6929

    This issue was closed as with the comment:

    "Going to close this as it's an upstream python bug that's now been fixed."

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    @kumaraditya303
    Copy link
    Contributor

    kumaraditya303 commented May 9, 2022

    Since only alpha6 was impacted and is now fixed, I am closing the issue.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.11 only security fixes build The build process and cross-build interpreter-core (Objects, Python, Grammar, and Parser dirs)
    Projects
    None yet
    Development

    No branches or pull requests

    3 participants