mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
17 lines
549 B
Python
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): ...
|