From: Paul K. <pki...@ni...> - 2007-07-13 20:29:57
|
On Fri, Jul 13, 2007 at 03:06:45PM -0500, John Hunter wrote: > Because the mpl_ prefix occurs nowhere else, we can easily change this > to whatever we want with a single search replace. I haven't sync'd with the repository yet so I can check this assertion: h123063:~/src/matplotlib$ find . -name "*.py" | xargs grep mpl_ | wc 191 627 20498 These are mostly mpl_connect and mpl_disconnect, so not too bad. The only other use of mpl_ is the following: h123063:~/src/matplotlib$ find . -name "*.py" | xargs grep mpl_ | grep -v mpl_connect | grep -v mpl_disconnect ./examples/mpl_with_glade.py: self.widgets = gtk.glade.XML('mpl_with_glade.glade') ./lib/matplotlib/backends/backend_wx.py: - mpl_with_glade.py | N/A (2) | N/A (2) | ./OME/python/matplotlib/backends/backend_wx.py: - mpl_with_glade.py | N/A (2) | N/A (2) | - Paul |