#1286 Remove header comments from stubs (#1292)

- Updates documentation related to previously required comment headers.
- Removes all comment headers from stubs
- Occasionally included a header for stubs that were noted to be incomplete or contained todo's.
This commit is contained in:
Emily Morehouse
2017-05-22 15:14:15 -07:00
committed by Guido van Rossum
parent a2aa93ac29
commit b6d08b81a3
354 changed files with 2 additions and 1404 deletions

View File

@@ -1,7 +1,3 @@
# Stubs for _compression (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
import io

View File

@@ -1,7 +1,3 @@
# Stubs for _curses (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, BinaryIO, IO, Optional, Tuple, Union, overload
chtype = Union[str, bytes, int]

View File

@@ -1,7 +1,3 @@
# Stubs for csv (Python 3.4)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Iterable
QUOTE_ALL = ... # type: int

View File

@@ -1,7 +1,3 @@
# Stubs for curses (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from _curses import * # noqa: F403
# Stubgen imports a python version of has_key only if it's not present
# in _curses (which it is in this stub)

View File

@@ -1,7 +1,3 @@
# Stubs for gzip (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
import _compression

View File

@@ -1,7 +1,3 @@
# Stubs for html.entities (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
name2codepoint = ... # type: Any

View File

@@ -1,5 +1,3 @@
# Stub for pdb (incomplete, only some global functions)
from typing import Any, Dict
def run(statement: str,

View File

@@ -1,7 +1,3 @@
# Stubs for runpy (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
class _TempModule:

View File

@@ -1,7 +1,3 @@
# Stubs for smtplib (Python 3.4)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
class SMTPException(OSError): ...

View File

@@ -1,5 +1 @@
# Stubs for sqlite3 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from sqlite3.dbapi2 import * # noqa: F403

View File

@@ -1,7 +1,3 @@
# Stubs for tkinter (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from tkinter.constants import * # noqa: F403

View File

@@ -1,7 +1,3 @@
# Stubs for tkinter.constants (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
NO = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for tkinter.ttk (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
import tkinter

View File

@@ -1,7 +1,3 @@
# Stubs for tokenize (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Callable, Generator, Iterable, List, NamedTuple, Optional, Union, Sequence, TextIO, Tuple
from builtins import open as _builtin_open
from token import * # noqa: F403

View File

@@ -1,7 +1,3 @@
# Stubs for wsgiref.validate (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
class WSGIWarning(Warning): ...