##// END OF EJS Templates
rust-utils: move the `filesystem_now` function to a util...
rust-utils: move the `filesystem_now` function to a util This is going to be useful for an upcoming `hg update` fastpath.

File last commit:

r52756:f4733654 default
r52927:b55f653a default
Show More
__init__.py
7 lines | 156 B | text/x-python | PythonLexer
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 # name space package to host third party extensions
Matt Harbison
typing: add `from __future__ import annotations` to most files...
r52756
from __future__ import annotations
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 import pkgutil
Augie Fackler
formatting: blacken the codebase...
r43346
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 __path__ = pkgutil.extend_path(__path__, __name__)