[code.view]

[top] / python / PyMOTW / linecache / linecache_path_search.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import linecache
     
     # Look for the linecache module, using
     # the built in sys.path search.
     module_line = linecache.getline('linecache.py', 3)
     print '\nMODULE : ', module_line
     

[top] / python / PyMOTW / linecache / linecache_path_search.py

contact | logmethods.com