aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>2023-03-28 16:52:30 -0700
committerGitHub <noreply@github.com>2023-03-28 16:52:30 -0700
commit604ed086d2d6bbcb915ea314c54b0638dbcdf8ca (patch)
tree8b13cbb15246667da9680e21e9303cbf4930cf61
parent7ff5991c3b807b1ee13c87df29b1cb6c33773c52 (diff)
downloadtyping-604ed086d2d6bbcb915ea314c54b0638dbcdf8ca.tar.gz
Update PEP 688 status, drop mentions of Python 2 (#1379)
-rw-r--r--docs/index.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 2fef96e..84c4e54 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -48,13 +48,13 @@ Type Checkers
-------------
* `mypy <http://mypy-lang.org/>`_, the reference implementation for type
- checkers. Supports Python 2 and 3.
+ checkers.
* `pyre <https://pyre-check.org/>`_, written in OCaml and optimized for
- performance. Supports Python 3 only.
+ performance.
* `pyright <https://github.com/microsoft/pyright>`_, a type checker that
- emphasizes speed. Supports Python 3 only.
+ emphasizes speed.
* `pytype <https://google.github.io/pytype/>`_, checks and infers types for
- unannotated code. Supports Python 2 and 3.
+ unannotated code.
Development Environments
------------------------
@@ -110,7 +110,7 @@ https://peps.python.org/topic/typing
* `PEP 675 <https://www.python.org/dev/peps/pep-0675/>`_, ``LiteralString``
* `PEP 677 <https://www.python.org/dev/peps/pep-0677/>`_ (rejected), ``(int, str) -> bool`` callable type syntax
* `PEP 681 <https://www.python.org/dev/peps/pep-0681/>`_ ``@dataclass_transform()``
-* `PEP 688 <https://www.python.org/dev/peps/pep-0688/>`_ (draft), ``Buffer``
+* `PEP 688 <https://www.python.org/dev/peps/pep-0688/>`_ ``Buffer``
* `PEP 692 <https://www.python.org/dev/peps/pep-0692/>`_ ``Unpack[TypedDict]`` for ``**kwargs``
* `PEP 695 <https://www.python.org/dev/peps/pep-0695/>`_ (draft), ``class Class[T]:`` type parameter syntax
* `PEP 696 <https://www.python.org/dev/peps/pep-0696/>`_ (draft), defaults for type variables