String.Template Source ...

Mic Pringle micpringle at gmail.com
Fri May 8 08:33:33 EDT 2009


Brilliant, thanks Peter.

-Mic

2009/5/8 Peter Otten <__peter__ at web.de>:
> 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
>



More information about the Python-list mailing list