Mercurial > public > mercurial-scm > hg
view mercurial/interfaces/util.py @ 52431:2c8c46c3c401
interfaces: mark a few dirstate methods abstract
I'm not sure what's going on here, but when enabling pytype checking on this
package, it spits out the following errors:
File "/mnt/c/Users/Matt/hg/mercurial/interfaces/dirstate.py", line 136, in changing_parents:
bad return type [bad-return-type]
Expected: Iterator
Actually returned: None
Attributes of protocol Iterator are not implemented on None: __next__
File "/mnt/c/Users/Matt/hg/mercurial/interfaces/dirstate.py", line 145, in changing_files:
bad return type [bad-return-type]
Expected: Iterator
Actually returned: None
Attributes of protocol Iterator are not implemented on None: __next__
I guess technically that's true, because these methods only have a doc comment,
and don't explicitly return something or unconditionally raise an error. The
strange thing is that both before and after this change, the *.pyi file that is
generated is unchanged, and contains:
def changing_files(self, repo) -> contextlib._GeneratorContextManager: ...
def changing_parents(self, repo) -> contextlib._GeneratorContextManager: ...
I'm not sure if the `@abstractmethod` should be the most inner or most outer
decoration. We'll roll the dice with being the innermost, because that's how
`@abstractproperty` says it should be used in conjunction with `@property`.
We should probably make all of the methods without an actual body abstract, like
was done for some `mercurial.wireprototypes` classes in fd200f5bcaea. But let's
hold off for now and do that enmass later.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 07 Dec 2024 01:57:55 -0500 |
parents | f4733654f144 |
children | 3c6809941280 |
line wrap: on
line source
# util.py - Utilities for declaring interfaces. # # Copyright 2018 Gregory Szorc <gregory.szorc@gmail.com> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. # zope.interface imposes a run-time cost due to module import overhead and # bookkeeping for declaring interfaces. So, we use stubs for various # zope.interface primitives unless instructed otherwise. from __future__ import annotations from .. import encoding if encoding.environ.get(b'HGREALINTERFACES'): from ..thirdparty.zope import interface as zi Attribute = zi.Attribute Interface = zi.Interface implementer = zi.implementer else: class Attribute: def __init__(self, __name__, __doc__=b''): pass class Interface: def __init__( self, name, bases=(), attrs=None, __doc__=None, __module__=None ): pass def implementer(*ifaces): def wrapper(cls): return cls return wrapper