欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python内置函数源码_python如何查看内置函数源码

发布时间:2025/6/17 python 17 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python内置函数源码_python如何查看内置函数源码 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

如题,如何查看python内置函数的源码

举个例子:

# 该以什么样的方式,才能去看xrang的官方源码实现

for i in xrange(10):

print i

# 直接点进去的话,大多都是一些定义的方法名,而没有具体实现

# 就是想知道,如何去看具体实现,而不是下面那一堆 pass

class xrange(object):

"""

xrange(stop) -> xrange object

xrange(start, stop[, step]) -> xrange object

Like range(), but instead of returning a list, returns an object that

generates the numbers in the range on demand. For looping, this is

slightly faster than range() and more memory efficient.

"""

def __getattribute__(self, name): # real signature unknown; restored from __doc__

""" x.__getattribute__('name') <==> x.name """

pass

def __getitem__(self, y): # real signature unknown; restored from __doc__

""" x.__getitem__(y) <==> x[y] """

pass

def __init__(self, stop): # real signature unknown; restored from __doc__

pass

def __iter__(self): # real signature unknown; restored from __doc__

""" x.__iter__() <==> iter(x) """

pass

def __len__(self): # real signature unknown; restored from __doc__

""" x.__len__() <==> len(x) """

pass

@staticmethod # known case of __new__

def __new__(S, *more): # real signature unknown; restored from __doc__

""" T.__new__(S, ...) -> a new object with type S, a subtype of T """

pass

def __reduce__(self, *args, **kwargs): # real signature unknown

pass

def __repr__(self): # real signature unknown; restored from __doc__

""" x.__repr__() <==> repr(x) """

pass

def __reversed__(self, *args, **kwargs): # real signature unknown

""" Returns a reverse iterator. """

pass

总结

以上是生活随笔为你收集整理的python内置函数源码_python如何查看内置函数源码的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。