comparison contrib/catapipe.py @ 48966:6000f5b25c9b

py2: remove simple from __future__ statements These were needed for Python 2 support. Now that our linter no longer mandates these, we can start deleting them. Differential Revision: https://phab.mercurial-scm.org/D12254
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 03 Mar 2022 17:34:00 +0100
parents 2372284d9457
children
comparison
equal deleted inserted replaced
48965:af0b21d5a930 48966:6000f5b25c9b
32 32
33 Typically you'll want to place the path to the named pipe in the 33 Typically you'll want to place the path to the named pipe in the
34 HGCATAPULTSERVERPIPE environment variable, which both run-tests and hg 34 HGCATAPULTSERVERPIPE environment variable, which both run-tests and hg
35 understand. To trace *only* run-tests, use HGTESTCATAPULTSERVERPIPE instead. 35 understand. To trace *only* run-tests, use HGTESTCATAPULTSERVERPIPE instead.
36 """ 36 """
37 from __future__ import absolute_import, print_function
38 37
39 import argparse 38 import argparse
40 import json 39 import json
41 import os 40 import os
42 import timeit 41 import timeit