For example I have a code:
f = open('ifyouwantme', 'r')
while True:
line = f.readline()
if not line: break
And I want to see the code which is behind open and readline functions. How can I see it?
1 Answer 1
You can download full source for Python from http://www.python.org/download/releases/ and see any implementation details you like.
answered Jun 24, 2013 at 21:08
bgporter
36.9k8 gold badges65 silver badges67 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
lang-py