sapling/eden/scm/edenscm/cext/osutil.pyi
Muir Manders 44343769f8 collapse edenscm.mercurial package into edenscm
Summary:
We want to rename away from "mercurial". Rather than rename the "mercurial" Python package, we opted to just collapse it into the parent "edenscm" package. This is also a step towards further organizing we want to do around the new project name.

To ease the transition wrt hotfixes, we now replace "edenscm.mercurial" with "mercurial" to fix imports within base64-python extensions.

Reviewed By: sggutier

Differential Revision: D38943169

fbshipit-source-id: 03fa18079c51e2f7fac05d65b127095da3ab7c99
2022-08-24 13:45:53 -07:00

25 lines
730 B
Python

# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
from typing import BinaryIO, List, Optional, Tuple, Union
O_CLOEXEC: int
class stat:
st_dev: int
st_mode: int
st_nlink: int
st_size: int
st_mtime: int
st_ctime: int
def listdir(
path: str, stat: Optional[bool] = None, skip: Optional[str] = None
) -> Union[List[Tuple[str, int]], List[Tuple[str, int, stat]]]: ...
def posixfile(name: str, mode: str = "rb", bufsize: int = -1) -> BinaryIO: ...
def recvfds(fd: int) -> List[int]: ...
def setprocname(name: Union[str, bytes]) -> None: ...
def unblocksignal(signal: int) -> None: ...