如何从 PyCharm 查看 datetime.py 的源代码?
我在 PyCharm 中按住 Ctrl 键单击 datetime.timedelta
函数,然后进入一个名为 ....PyCharm10\system\python_stubs\76178323\datetime.py 的文件,该文件似乎包含许多空方法。具体来说,按住 Ctrl 键单击 datetime.delta 会将我带到文件的这一部分:
def __init__(self, *args, **kwargs): # real signature unknown
pass
这是一个错误吗?如何查看/跟踪真实的 datetime.py?
I'm ctrl-clicking on the datetime.timedelta
function from within PyCharm, and getting to a file named ....PyCharm10\system\python_stubs\76178323\datetime.py, which appears to contain many empty methods. Specifically, ctrl-clicking on datetime.delta brings me to this part of the file:
def __init__(self, *args, **kwargs): # real signature unknown
pass
Is this a bug? How can I view/trace through the real datetime.py?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或许,没有办法。操作系统可能不包含库的源代码,仅包含编译的二进制文件(例如/usr/lib/python2.6/lib-dynload/datetime.so)。
Perhaps, there is no way. Possible, OS does not contain source code of the library, only the compiled binary (e.g. /usr/lib/python2.6/lib-dynload/datetime.so).