ChatGPT解决这个技术问题 Extra ChatGPT

Why do some built-in Python functions only have pass?

I wanted to see how a math.py function was implemented, but when I opened the file in PyCharm I found that all the functions are empty and there is a simple pass. For example:

def ceil(x): # real signature unknown; restored from __doc__
    """
    ceil(x)

    Return the ceiling of x as a float.
    This is the smallest integral value >= x.
    """
    pass

I guess it is because the functions being used are actually from the C standard library. How does it work?

math.py? What math.py? I don't think Python comes with such a file. The math module is implemented in Modules/mathmodule.c, a file that probably doesn't make its way into your Python installation.
Googling "Python real signature unknown" suggests that this is some sort of PyCharm functionality and PyCharm is lying to you.
Exactly, pycharm tells me that math.py exists. And its a file with all the math functions that are empty like the ceil I put in my question.

u
user2357112

PyCharm is lying to you. The source code you're looking at is a fake that PyCharm has created. PyCharm knows what functions should be there, and it can guess at their signatures using the function docstrings, but it has no idea what the function bodies should look like.

If you want to see the real source code, you can look at it in the official Github repository in Modules/mathmodule.c. A lot of the functions in there are macro-generated thin wrappers around C functions from math.h, but there's also a bunch of manually-written code to handle things like inconsistent or insufficient standard library implementations, functions with no math.h equivalent, and customization hooks like __ceil__.


You can identify fake source files by the file path in the title bar. Real: \Python\Python<version>\Lib\. Fake: \PyCharm<version>\system\python_stubs\
Since we could use them by execute them( such as the ceil function), why can't we find the source in our local envirnment? Is it because it is already binary format(if this is the case, where to find this binary file)?
@LukAron: On Windows, math is compiled directly into the Python executable. On other platforms, you can check math.__file__ to find the .so file.
@user2357112supportsMonica thanks so much for the reply, in windows, is there any way to find where this executable locates?
but why pycharm lies? 🤔
f
fedor.chernolutsky

There are no source code written in python for some python libraries. These libraries was written on C or another languages. They are not presented by .py files and PyCharm or any another IDE cannot open their sources in readable view.

You can check sources in ...\AppData\Local\Programs\Python\Python310\Lib\site-packages. Most likely in your-package folder there will be .pui, .pud, .dll and other similiar files