Sorry, I wrote "expose" but  I meant "extend".

And to use the bandwidth useful, I will make a
workaround for Kįri Haršarson public. He got
problems to profile the IIS via

import profile
profile.run(....)

One easy solution for IIS, WSH or IE is this:

 # --- IIS-Code
def test():
  do_anything_useful

# --- Profiling-Code
import profile
prof = profile.Profile()
try:
  prof = prof.runctx("test()", globals(), locals())
except SystemExit:
  pass
prof.dump_stats('py.log')


md

_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython

Reply via email to