[Python-checkins] CVS: python/dist/src/Lib pdb.py

Barry A. Warsaw bwarsaw@cnri.reston.va.us
Thu, 9 Sep 1999 12:32:42 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Lib
In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Lib

Modified Files:
	pdb.py 
Log Message:
Pdb.lineinfo(): Don't use os.popen('egrep ...') to find the line in
the file that a function is defined on.  Non-portable to Windows and
JPython.  Instead, new find_function() uses re module on a similar
(simple-minded) pattern.