[UpdateTestChecks][NFC] Drop a python2 workaround
authorAlex Richardson <Alexander.Richardson@cl.cam.ac.uk>
Fri, 24 Sep 2021 13:15:22 +0000 (14:15 +0100)
committerAlex Richardson <Alexander.Richardson@cl.cam.ac.uk>
Tue, 28 Sep 2021 16:57:36 +0000 (17:57 +0100)
llvm/utils/UpdateTestChecks/common.py

index 3bc9089..5cb5eb4 100644 (file)
@@ -7,12 +7,6 @@ import re
 import subprocess
 import sys
 
-if sys.version_info[0] > 2:
-  class string:
-    expandtabs = str.expandtabs
-else:
-  import string
-
 ##### Common utilities for update_*test_checks.py
 
 
@@ -266,7 +260,7 @@ def scrub_body(body):
   # whitespace in place.
   body = SCRUB_WHITESPACE_RE.sub(r' ', body)
   # Expand the tabs used for indentation.
-  body = string.expandtabs(body, 2)
+  body = str.expandtabs(body, 2)
   # Strip trailing whitespace.
   body = SCRUB_TRAILING_WHITESPACE_TEST_RE.sub(r'', body)
   return body