>>> import abc
>>> abc.__file__
'C:\\Program Files\\Python31\\lib\\abc.py'
See docs .
For a more thorough check, you can use inspectmodule:
>>> import inspect
>>> from abc import *
>>> inspect.getfile(ABCMeta)
'C:\\Program Files\\Python31\\lib\\abc.py'
source
share