<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#CCCCCC" text="#000000">
    <div class="moz-cite-prefix"><br>
    </div>
    <blockquote
cite="mid:CAJ3HoZ1KBGx4FzQfff+pN6ZdnL0LdpKLgFi4La0XA_J4iBoGkg@mail.gmail.com"
      type="cite">
      <blockquote type="cite">
        <pre wrap="">from bzrlib.doc_generate.conf import *
</pre>
      </blockquote>
      <pre wrap="">
$ python
import bzrlib.doc_generate.conf
print(conf.__file__)

should get you close.

If its a package, you'll also want
print(conf.__path__)
</pre>
    </blockquote>
    These command gives errors. But they were close enough, thanks! :)<br>
    <br>
    <tt>$ python</tt><tt><br>
    </tt><tt>Python 2.7.1+ (r271:86832, Sep 27 2012, 21:16:52) </tt><tt><br>
    </tt><tt>[GCC 4.5.2] on linux2</tt><tt><br>
    </tt><tt>Type "help", "copyright", "credits" or "license" for more
      information.</tt><tt><br>
    </tt><tt>>>> import bzrlib.doc_generate.conf</tt><tt><br>
    </tt><tt>>>> print(conf.__file__)</tt><tt><br>
    </tt><tt>Traceback (most recent call last):</tt><tt><br>
    </tt><tt>  File "<stdin>", line 1, in <module></tt><tt><br>
    </tt><tt>NameError: name 'conf' is not defined</tt><tt><br>
    </tt><tt>>>> print(bzrlib.doc_generate.conf)</tt><tt><br>
    </tt><tt><module 'bzrlib.doc_generate.conf' from
      '/usr/lib/python2.7/dist-packages/bzrlib/doc_generate/conf.pyc'></tt><tt><br>
    </tt><tt>>>></tt><br>
    <br>
    Now I'm reading the above file. It seems that what I look for is yet
    in another file...<br>
    <br>
  </body>
</html>