view stubs/twisted/internet/inotify.pyi @ 1933:c81f86f3d65a

effecteval is mostly obsolete, but now it can at least show a list of effects used in a song (which seq can too) Ignore-this: c24e4c1c3ccd839e79b1b2fb19ee996a
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 02 Jun 2019 11:37:14 +0000
parents 0f0ff27e55a3
children
line wrap: on
line source

# Stubs for twisted.internet.inotify (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from twisted.internet.abstract import FileDescriptor
from typing import Any, Optional

IN_ACCESS: int
IN_MODIFY: int
IN_ATTRIB: int
IN_CLOSE_WRITE: int
IN_CLOSE_NOWRITE: int
IN_OPEN: int
IN_MOVED_FROM: int
IN_MOVED_TO: int
IN_CREATE: int
IN_DELETE: int
IN_DELETE_SELF: int
IN_MOVE_SELF: int
IN_UNMOUNT: int
IN_Q_OVERFLOW: int
IN_IGNORED: int
IN_ONLYDIR: int
IN_DONT_FOLLOW: int
IN_MASK_ADD: int
IN_ISDIR: int
IN_ONESHOT: int
IN_CLOSE: Any
IN_MOVED: Any
IN_CHANGED: Any
IN_WATCH_MASK: Any

def humanReadableMask(mask: Any): ...

class _Watch:
    path: Any = ...
    mask: Any = ...
    autoAdd: Any = ...
    callbacks: Any = ...
    def __init__(self, path: Any, mask: Any = ..., autoAdd: bool = ..., callbacks: Optional[Any] = ...) -> None: ...

class INotify(FileDescriptor):
    connected: int = ...
    def __init__(self, reactor: Optional[Any] = ...) -> None: ...
    def connectionLost(self, reason: Any) -> None: ...
    def fileno(self): ...
    def doRead(self) -> None: ...
    def watch(self, path: Any, mask: Any = ..., autoAdd: bool = ..., callbacks: Optional[Any] = ..., recursive: bool = ...): ...
    def ignore(self, path: Any) -> None: ...