[lld][utils] Remove Python2 compatible imports in benchmark.py

These imports were moved around in Python 3.0
(https://docs.python.org/3/whatsnew/3.0.html#library-changes).

LLVM requires Python >= 3.8 so we can expect the Python3 names
to exist.
This commit is contained in:
David Spickett 2025-10-16 11:14:12 +00:00
parent 6ea5456789
commit 44c96926c5

View File

@ -13,13 +13,8 @@ import subprocess
import json
import datetime
import argparse
try:
from urllib.parse import urlencode
from urllib.request import urlopen, Request
except ImportError:
from urllib import urlencode
from urllib2 import urlopen, Request
from urllib.parse import urlencode
from urllib.request import urlopen, Request
parser = argparse.ArgumentParser()