Mic Pringle wrote:

> I'd like to have a 'dig around' in the source for String.Template, but
> can't seem to find where it lives.

I assume that you mean string.Template.

> Could someone please let me know where about's in the source (perhaps
> a path?) the template functions live ?
> 
> I'm working on a Mac, using Leopard and the bundled version of Python.

Import the module and inspect its __file__ attribute:

>>> import string
>>> string.__file__
'/usr/lib/python2.6/string.pyc'

This means that the string module's path is /usr/lib/python2.6/string.py 
over here.

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to