How do I find the location of Python module sources

De openkb
Aller à : Navigation, rechercher

Sommaire

Questions

How do I learn where the source file for a given Python module is installed? Is the method different on Windows than on Linux?

I m trying to look for the source of the datetime module in particular, but I m interested in a more general answer as well.

Answers

For a pure python module you can find the source by looking at themodule.__file__. The datetime module, however, is written in C, and therefore datetime.__file__ points to a .so file (there is no datetime.__file__ on Windows), and therefore, you can t see the source.

If you download a python source tarball and extract it, the modules code can be found in the Modules subdirectory.

For example, if you want to find the datetime code for python 2.6, you can look at

Python-2.6/Modules/datetimemodule.c

You can also find the latest Mercurial version on the web at https://hg.python.org/cpython/file/tip/Modules/_datetimemodule.c https://hg.python.org/cpython/file/tip/Modules/_datetimemodule.c

Source

License : cc by-sa 3.0

http://stackoverflow.com/questions/269795/how-do-i-find-the-location-of-python-module-sources

Related

Outils personnels
Espaces de noms

Variantes
Actions
Navigation
Outils