Lisi wrote:

> If sys.py is a file, it must be somewhere; but I can't find it.  Where is
> it? I would like to look at it.

You are out of luck, there is no sys.py. The sys module is so tightly 
integrated that Python cannot run without it; it has to be part of the 
interpreter and is written in C. 

In general, to see the parts of Python that are written in C you have to 
download the source distribution, but for an occasional glimpse at a 
specific module you can also use an URL like

http://hg.python.org/cpython/file/2.5/Python/sysmodule.c



_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to