Files
odoo-stubs/odoo-stubs/tools/osutil.pyi
Trinh Anh Ngoc 40f7b77380 Update
2019-12-09 16:16:42 +07:00

17 lines
549 B
Python

# Stubs for odoo.tools.osutil (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
import ctypes
import os
from typing import Any, Optional
def listdir(dir: Any, recursive: bool = ...): ...
def walksymlinks(top: Any, topdown: bool = ..., onerror: Optional[Any] = ...) -> None: ...
def tempdir() -> None: ...
def zip_dir(path: Any, stream: Any, include_dir: bool = ..., fnct_sort: Optional[Any] = ...) -> None: ...
getppid = os.getppid
is_running_as_nt_service: Any
class _PROCESSENTRY32(ctypes.Structure): ...