On Apr 11, 1:49 pm, [EMAIL PROTECTED] wrote: > how do i profile a program? i found out that there are some profilers > included in the standard library but couldnt really figure out how to > access/use them
Are you talking about using PyChecker or nose or what? In other words, do you want to check your script for errors, documentation issues, compliance with PEPs or something else? Maybe you mean introspection? If the latter, here are a few links on the subject: http://www.ibm.com/developerworks/library/l-pyint.html http://www.diveintopython.org/power_of_introspection/index.html http://www.ginstrom.com/scribbles/2007/10/24/python-introspection-with-the-inspect-module/ If you want to do code coverage, PEPs stuff or checking for errors, use PyChecker and PyLint or nose. See the following for more info: http://www.logilab.org/857 http://pychecker.sourceforge.net/ http://somethingaboutorange.com/mrl/projects/nose/ Mike -- http://mail.python.org/mailman/listinfo/python-list