_functools module
How does this import work, what file does it use? import _functools in python 2.5 : import _functools print _functools.__file__ Traceback (most recent call last): File "D:\zjm_code\mysite\zjmbooks\a.py", line 5, in <module> print _functools.__file__ AttributeError: 'module' object has no attribute '__file__' and how can i g...