mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
6 lines
150 B
Python
6 lines
150 B
Python
# Source: https://hg.python.org/cpython/file/2.7/Lib/whichdb.py
|
|
|
|
from typing import Optional, Text
|
|
|
|
def whichdb(filename: Text) -> Optional[str]: ...
|