##// END OF EJS Templates
showstack: use absolute_import
Pulkit Goyal -
r28522:f2fe7b19 default
parent child Browse files
Show More
@@ -2,7 +2,10
2 2 #
3 3 # binds to both SIGQUIT (Ctrl-\) and SIGINFO (Ctrl-T on BSDs)
4 4
5 import sys, signal, traceback
5 from __future__ import absolute_import
6 import signal
7 import sys
8 import traceback
6 9
7 10 def sigshow(*args):
8 11 sys.stderr.write("\n")
@@ -9,7 +9,6
9 9 contrib/python-hook-examples.py not using absolute_import
10 10 contrib/revsetbenchmarks.py not using absolute_import
11 11 contrib/revsetbenchmarks.py requires print_function
12 contrib/showstack.py not using absolute_import
13 12 contrib/synthrepo.py not using absolute_import
14 13 doc/check-seclevel.py not using absolute_import
15 14 doc/gendoc.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now