getpass return str (#204)

This commit is contained in:
jukebox
2016-05-17 15:32:03 +02:00
committed by Jukka Lehtosalo
parent 70389d14ee
commit 8e3bde1dab

View File

@@ -3,7 +3,7 @@
from typing import TextIO
def getpass(prompt: str = ..., stream: TextIO = None): ...
def getpass(prompt: str = ..., stream: TextIO = None) -> str: ...
def getuser() -> str: ...