##// END OF EJS Templates
vfs: handle shutil.rmtree deprecation of onerror in Python 3.12...
vfs: handle shutil.rmtree deprecation of onerror in Python 3.12 Tests would fail with warnings: .../mercurial/vfs.py:289: DeprecationWarning: onerror argument is deprecated, use onexc instead The excinfo changed slightly, but we don't use it anyway.

File last commit:

r50538:e1c586b9 default
r51647:f173c2c2 stable
Show More
filters.pyi
6 lines | 215 B | text/x-python | PythonLexer
Matt Harbison
attr: vendor 22.1.0...
r50538 from typing import Any, Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...