Added stub for whichdb(py2) (#1508)

Added stub for whichdb(py2)
This commit is contained in:
Ashwini Chaudhary
2017-10-07 07:34:18 +05:30
committed by Matthias Kramm
parent c68dcf1870
commit c03e3a7ac0

5
stdlib/2/whichdb.pyi Normal file
View File

@@ -0,0 +1,5 @@
# Source: https://hg.python.org/cpython/file/2.7/Lib/whichdb.py
from typing import Optional, Text
def whichdb(filename: Text) -> Optional[str]: ...