Skip to content
Snippets Groups Projects
Commit 81224afd authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

lock: properly convert error to bytes

Flagged by pytype when a later changeset is applied moving typing comment to annotation.

We fix this ahead of the annotation change to make sure pytype remains happy
after the change.

We have to do fairly crazy dance for pytype to be happy. This probably comes
from the fact IOError.filename probably claims to be `str` while it is actually
`bytes` if the filename raising that `IOError` is bytes.

At the same time, `IOError.strerror` is consistently `str` and should be passed
as `str` everywhere.
parent 9d372155
No related branches found
No related tags found
1 merge request!742pytype: modernise import and annotation
......@@ -498,8 +498,7 @@
class LockError(IOError):
def __init__(self, errno, strerror, filename, desc):
# TODO: figure out if this should be bytes or str
# _type: (int, str, str, bytes) -> None
# _type: (int, str, bytes, bytes) -> None
IOError.__init__(self, errno, strerror, filename)
self.desc = desc
......@@ -508,7 +507,7 @@
class LockHeld(LockError):
def __init__(self, errno, filename, desc, locker):
LockError.__init__(self, errno, b'Lock held', filename, desc)
LockError.__init__(self, errno, 'Lock held', filename, desc)
self.locker = locker
......
......@@ -12,6 +12,7 @@
import signal
import socket
import time
import typing
import warnings
from .i18n import _
......@@ -154,4 +155,5 @@
if delay == warningidx:
printwarning(ui.warn, inst.locker)
if timeout <= delay:
assert isinstance(inst.filename, bytes)
raise error.LockHeld(
......@@ -157,5 +159,8 @@
raise error.LockHeld(
errno.ETIMEDOUT, inst.filename, l.desc, inst.locker
errno.ETIMEDOUT,
typing.cast(bytes, inst.filename),
l.desc,
inst.locker,
)
time.sleep(1)
delay += 1
......@@ -290,4 +295,6 @@
locker,
)
else:
assert isinstance(why.filename, bytes)
assert isinstance(why.strerror, str)
raise error.LockUnavailable(
......@@ -293,5 +300,8 @@
raise error.LockUnavailable(
why.errno, why.strerror, why.filename, self.desc
why.errno,
why.strerror,
typing.cast(bytes, why.filename),
self.desc,
)
if not self.held:
......
......@@ -243,7 +243,7 @@
def wlock(self, wait=True):
raise error.LockUnavailable(
0,
_(b'lock not available'),
pycompat.sysstr(_(b'lock not available')),
b'lock',
_(b'cannot lock static-http repository'),
)
......@@ -251,7 +251,7 @@
def lock(self, wait=True):
raise error.LockUnavailable(
0,
_(b'lock not available'),
pycompat.sysstr(_(b'lock not available')),
b'lock',
_(b'cannot lock static-http repository'),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment