mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
stubs for sndhdr (#1070)
This commit is contained in:
committed by
Guido van Rossum
parent
c1944f944e
commit
df2970865b
25
stdlib/2and3/sndhdr.pyi
Normal file
25
stdlib/2and3/sndhdr.pyi
Normal file
@@ -0,0 +1,25 @@
|
||||
# Stubs for sndhdr (Python 2 and 3)
|
||||
|
||||
import os
|
||||
import sys
|
||||
from typing import Any, NamedTuple, Optional, Tuple, Union
|
||||
|
||||
if sys.version_info >= (3, 5):
|
||||
SndHeaders = NamedTuple('SndHeaders', [
|
||||
('filetype', str),
|
||||
('framerate', int),
|
||||
('nchannels', int),
|
||||
('nframes', int),
|
||||
('sampwidth', Union[int, str]),
|
||||
])
|
||||
_SndHeaders = SndHeaders
|
||||
else:
|
||||
_SndHeaders = Tuple[str, int, int, int, Union[int, str]]
|
||||
|
||||
if sys.version_info >= (3, 6):
|
||||
_Path = Union[str, bytes, os.PathLike[Any]]
|
||||
else:
|
||||
_Path = Union[str, bytes]
|
||||
|
||||
def what(filename: _Path) -> Optional[_SndHeaders]: ...
|
||||
def whathdr(filename: _Path) -> Optional[_SndHeaders]: ...
|
||||
Reference in New Issue
Block a user