From 786355b2fcdeaa1bdb93a395c49c7662cc40a506 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Mon, 29 Oct 2018 14:17:13 +0100 Subject: [PATCH] PEP 484: Remove mention of typing.io and .re --- pep-0484.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pep-0484.txt b/pep-0484.txt index 714fcb4376d..dd1d82844d7 100644 --- a/pep-0484.txt +++ b/pep-0484.txt @@ -2057,7 +2057,7 @@ Convenience definitions: * TYPE_CHECKING, ``False`` at runtime but ``True`` to type checkers -Types available in the ``typing.io`` submodule: +I/O releated types: * IO (generic over ``AnyStr``) @@ -2065,7 +2065,7 @@ Types available in the ``typing.io`` submodule: * TextIO (a simple subtype of ``IO[str]``) -Types available in the ``typing.re`` submodule: +Types related to regular expressions and the ``re`` module: * Match and Pattern, types of ``re.match()`` and ``re.compile()`` results (generic over ``AnyStr``)