From 296f294b7524d4fed731e8d0e80fbc63179d127c Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Fri, 26 May 2017 09:30:42 -0700 Subject: [PATCH] add fileinput.filelineno and fileinput.fileno (#1338) --- stdlib/2and3/fileinput.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/2and3/fileinput.pyi b/stdlib/2and3/fileinput.pyi index 4ca7772cd..8a56ecaf6 100644 --- a/stdlib/2and3/fileinput.pyi +++ b/stdlib/2and3/fileinput.pyi @@ -22,6 +22,8 @@ def close() -> None: ... def nextfile() -> None: ... def filename() -> str: ... def lineno() -> int: ... +def filelineno() -> int: ... +def fileno() -> int: ... def isfirstline() -> bool: ... def isstdin() -> bool: ...