mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Initial revision
This commit is contained in:
parent
ea31ea2859
commit
72fdef07d3
1 changed files with 19 additions and 0 deletions
19
Tools/faqwiz/faqw.py
Executable file
19
Tools/faqwiz/faqw.py
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
#! /usr/local/bin/python
|
||||||
|
import posix
|
||||||
|
t1 = posix.times()
|
||||||
|
FAQDIR = "/usr/people/guido/python/FAQ"
|
||||||
|
import os, sys, time, operator
|
||||||
|
os.chdir(FAQDIR)
|
||||||
|
sys.path.insert(0, FAQDIR)
|
||||||
|
try:
|
||||||
|
import faqwiz
|
||||||
|
except SystemExit, n:
|
||||||
|
sys.exit(n)
|
||||||
|
except:
|
||||||
|
t, v, tb = sys.exc_type, sys.exc_value, sys.exc_traceback
|
||||||
|
print
|
||||||
|
import cgi
|
||||||
|
cgi.print_exception(t, v, tb)
|
||||||
|
t2 = posix.times()
|
||||||
|
fmt = "<BR>(times: user %.3g, sys %.3g, ch-user %.3g, ch-sys %.3g, real %.3g)"
|
||||||
|
print fmt % tuple(map(operator.sub, t2, t1))
|
Loading…
Add table
Add a link
Reference in a new issue