##// END OF EJS Templates
setup: make sure Rust build its extension for the right python...
setup: make sure Rust build its extension for the right python Strictly speaking, only "PYTHON_SYS_EXECUTABLE" seems to be necessary, but I don't want to take a chances, as in testing "PYTHON" also had an effect.

File last commit:

r52994:720d9849 default
r53139:124c944b stable
Show More
typelib.py
55 lines | 1.4 KiB | text/x-python | PythonLexer
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 # typelib.py - type hint aliases and support
#
# Copyright 2022 Matt Harbison <matt_harbison@yahoo.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
Matt Harbison
typing: add `from __future__ import annotations` to most files...
r52756 from __future__ import annotations
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 import typing
Matt Harbison
typing: narrow the scope of some recent disabled import warnings...
r52624 from typing import (
Callable,
)
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 # Note: this is slightly different from pycompat.TYPE_CHECKING, as using
# pycompat causes the BinaryIO_Proxy type to be resolved to ``object`` when
# used as the base class during a pytype run.
TYPE_CHECKING = typing.TYPE_CHECKING
# The BinaryIO class provides empty methods, which at runtime means that
# ``__getattr__`` on the proxy classes won't get called for the methods that
# should delegate to the internal object. So to avoid runtime changes because
# of the required typing inheritance, just use BinaryIO when typechecking, and
# ``object`` otherwise.
if TYPE_CHECKING:
from typing import (
BinaryIO,
Matt Harbison
typing: add type hints to `cmdutil.findrepo()`...
r52608 Union,
)
from . import (
node,
posix,
filecache: use binary path in the test...
r52994 util,
Matt Harbison
typing: add type hints to `cmdutil.findrepo()`...
r52608 windows,
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 )
BinaryIO_Proxy = BinaryIO
filecache: use binary path in the test...
r52994 CacheStat = Union[
posix.cachestat,
windows.cachestat,
util.uncacheable_cachestat,
]
Matt Harbison
typing: add type hints to `cmdutil.findrepo()`...
r52608 NodeConstants = node.sha1nodeconstants
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 else:
Matt Harbison
typing: add type hints to `cmdutil.findrepo()`...
r52608 from typing import Any
Matt Harbison
pytype: stop excluding mercurial/ui.py...
r50688 BinaryIO_Proxy = object
Matt Harbison
typing: add type hints to `cmdutil.findrepo()`...
r52608 CacheStat = Any
NodeConstants = Any
Matt Harbison
typing: narrow the scope of some recent disabled import warnings...
r52624
# scmutil.getuipathfn() related callback.
UiPathFn = Callable[[bytes], bytes]