Possible Duplicate:
About python's built in sort() method
Is there a way to see how built in functions work in python? I don't mean just how to use them, but also how were they built, what is the code behind sorted or enumerate etc...?
Is there a way to see how built in functions work in python? I don't mean just how to use them, but also how were they built, what is the code behind sorted or enumerate etc...? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Since Python is open source you can read the source code. To find out what file a particular module or function is implemented in you can usually print the For built-in classes and methods this is not so straighforward since |
|||||||||||||||||
|
|
The iPython shell makes this easy: Then you can always download the source code for the (c)Python. If you're interested in pythonic implementations of core functionality have a look at PyPy source. |
|||||
|