Skip to content
Snippets Groups Projects
Select Git revision
  • 2b080cf599c3734a66b719fc6d0b59ea9fe15caf
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

asmx86.c

Blame
  • utarfile.pyi 402 B
    from typing import Any
    
    DIRTYPE = "dir"
    REGTYPE = "file"
    
    class TarInfo:
        name: str
        size: int
        type: str
    
        def __str__(self) -> str: ...
    
    class TarFile:
        def __init__(self, name: Any = None, fileobj: Any = None): ...
        def next(self) -> TarInfo: ...
        def __iter__(self) -> TarFile: ...
        def __next__(self) -> TarInfo: ...
        def extractfile(self, tarinfo: TarInfo) -> Any: ...