Skip to content
Snippets Groups Projects
Commit 1ec194a5ebc5 authored by jfp's avatar jfp
Browse files

Update template, from_vms and to_vms accept bytes or str

parent 80ab28cec3d6
No related branches found
No related tags found
No related merge requests found
from typing import NoReturn
def from_vms(path: str, wild_flag: int=0) -> str | None: ...
def to_vms(path: str, allow_wild: int=0, no_directory: int=0) -> str | None: ...
def from_vms(path: bytes | str, wild_flag: int=0) -> str | None: ...
def to_vms(path: bytes | str, allow_wild: int=0, no_directory: int=0) -> str | None: ...
def vms_exit(status: int) -> NoReturn: ...
def posix_exit(status: int) -> NoReturn: ...
def fix_time(vms_time: int) -> int | None: ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment