Mercurial > public > mercurial-scm > hg-stable
diff mercurial/statichttprepo.py @ 52665:24ee91ba9aa8
pyupgrade: drop usage of py3 aliases for `OSError`
These were different classes in py2, but now a handful of error classes are just
an alias of `OSError`, like `IOError`, `EnvironmentError`, `WindowsError`, etc.
This is the result of running a hacked version of `pyupgrade` 3.19.1[1]
$ hg files -0 'relglob:**.py' | xargs -0 \
pyupgrade --py38-plus --keep-percent-format --keep-mock --keep-runtime-typing
The hack is because it doesn't have command line switches to disable most
changes, so it makes tons of unrelated changes all at once. The hack is to
1) patch `pyupgrade._main._fix_tokens()` to immediately return its content arg
2) change `pyupgrade._data.register_decorator()` to only register the function
if it's from the fixer we're interested in:
if func.__module__ in (
"pyupgrade._plugins.exceptions",
):
FUNCS[tp].append(func)
return func
[1] https://github.com/asottile/pyupgrade
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 05 Jan 2025 21:03:17 -0500 |
parents | 7346f93be7a4 |
children | 5cc8deb96b48 |
line wrap: on
line diff
--- a/mercurial/statichttprepo.py Mon Jan 06 14:15:40 2025 -0500 +++ b/mercurial/statichttprepo.py Sun Jan 05 21:03:17 2025 -0500 @@ -72,9 +72,9 @@ # Explicitly convert the exception to str as Py3 will try # convert it to local encoding and with as the HTTPResponse # instance doesn't support encode. - raise IOError(num, str(inst)) + raise OSError(num, str(inst)) except urlerr.urlerror as inst: - raise IOError(None, inst.reason) + raise OSError(None, inst.reason) if code == 200: # HTTPRangeHandler does nothing if remote does not support @@ -140,7 +140,7 @@ def __call__(self, path, mode=b'r', *args, **kw): if mode not in (b'r', b'rb'): - raise IOError('Permission denied') + raise OSError('Permission denied') f = b"/".join((self.base, urlreq.quote(path))) return httprangereader(f, urlopener)