mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-25 16:24:03 +08:00
c03e3a7ac0
Added stub for whichdb(py2)
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]: ...
|