X Tutup
The Wayback Machine - https://web.archive.org/web/20221218092916/https://github.com/python/cpython/pull/24659/commits
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

bpo-43327: Fix the docs for PyImport_ImportFrozenModuleObject() #24659

Merged
merged 2 commits into from Nov 27, 2022

Commits on Feb 26, 2021

  1. bpo-43327: Fix the docs for PyImport_ImportFrozenModuleObject()

    The docs state that PyImport_ImportFrozenModuleObject() returns a
    new reference, but it actually returns an int.
    
    The name of this function's first parameter must be specified in
    Doc/data/refcounts.dat.  The line for the name parameter will
    correspond to the function's return value if the parameter name is
    not given (as mentioned in a comment at the top of
    Doc/data/refcounts.dat).
    ZackerySpytz committed Feb 26, 2021
X Tutup