We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165ea70 commit 27eb4f2Copy full SHA for 27eb4f2
parse.py
@@ -3,6 +3,7 @@
3
4
Parse a document to a simpletree tree, with optional profiling
5
"""
6
+#RELEASE move ./examples/
7
8
import sys
9
import os
@@ -71,7 +72,7 @@ def parse():
71
72
import hotshot
73
import hotshot.stats
74
prof = hotshot.Profile('stats.prof')
- prof.runcall(p.parse, f, False)
75
+ prof.runcall(p.parse, f)
76
prof.close()
77
# XXX - We should use a temp file here
78
stats = hotshot.stats.load('stats.prof')
0 commit comments