Use cProfile instead of profile module

Ignore-this: 266b2725d57ff98d198dfc4ffccc3af3

darcs-hash:20091201204548-86b55-b53336231cd5c6d7aa33aab05384bed2b7829c47.gz
This commit is contained in:
David Rousselie
2009-12-01 21:45:48 +01:00
parent 4a9e1552f3
commit 249b2f55b9

View File

@@ -21,7 +21,7 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
## ##
import profile import cProfile
import jmc.runner as runner import jmc.runner as runner
profile.run("runner.main()", "jmc.prof") cProfile.run("runner.main()", "jmc.prof")