[Python-checkins] peps: Add Python-Version header; some formatting fixes.

guido.van.rossum python-checkins at python.org
Thu Jul 16 09:45:02 CEST 2015


https://hg.python.org/peps/rev/b0072164ba27
changeset:   5905:b0072164ba27
user:        Guido van Rossum <guido at python.org>
date:        Thu Jul 16 09:44:36 2015 +0200
summary:
  Add Python-Version header; some formatting fixes.

files:
  pep-0484.txt |  27 ++++++++++++++-------------
  1 files changed, 14 insertions(+), 13 deletions(-)


diff --git a/pep-0484.txt b/pep-0484.txt
--- a/pep-0484.txt
+++ b/pep-0484.txt
@@ -9,6 +9,7 @@
 Type: Standards Track
 Content-Type: text/x-rst
 Created: 29-Sep-2014
+Python-Version: 3.5
 Post-History: 16-Jan-2015,20-Mar-2015,17-Apr-2015,20-May-2015,22-May-2015
 Resolution: https://mail.python.org/pipermail/python-dev/2015-May/140104.html
 
@@ -85,7 +86,7 @@
 ---------
 
 While the proposed typing module will contain some building blocks for
-runtime type checking -- in particular the `get_type_hints()`
+runtime type checking -- in particular the ``get_type_hints()``
 function -- third party packages would have to be developed to
 implement specific runtime type checking functionality, for example
 using decorators or metaclasses.  Using type hints for performance
@@ -262,10 +263,10 @@
 specifying callback signatures with a variable number of argument of a
 specific type.
 
-Because `typing.Callable` does double-duty as a replacement for
-`collections.abc.Callable`, `isinstance(x, typing.Callable)` is
-implemented by deferring to `isinstance(x, collections.abc.Callable)`.
-However, `isinstance(x, typing.Callable[...])` is not supported.
+Because ``typing.Callable`` does double-duty as a replacement for
+``collections.abc.Callable``, ``isinstance(x, typing.Callable)`` is
+implemented by deferring to ```isinstance(x, collections.abc.Callable)``.
+However, ``isinstance(x, typing.Callable[...])`` is not supported.
 
 
 Generics
@@ -413,7 +414,7 @@
 
 Subclassing a generic class without specifying type parameters assumes
 ``Any`` for each position.  In the following example, ``MyIterable``
-is not generic but implicitly inherits from ``Iterable[Any]``:
+is not generic but implicitly inherits from ``Iterable[Any]``::
 
   from typing import Iterable
 
@@ -441,20 +442,20 @@
 inferred by a type checker may be different depending on the form we
 use.  The first way is to give the value of the type parameter
 explicitly -- this overrides whatever type inference the type
-checker would otherwise perform:
+checker would otherwise perform::
 
   x = Node[T]()  # The type inferred for x is Node[T].
 
   y = Node[int]()  # The type inferred for y is Node[int].
 
 If no explicit types are given, the type checker is given some
-freedom. Consider this code:
+freedom. Consider this code::
 
   x = Node()
 
 The inferred type could be ``Node[Any]``, as there isn't enough
 context to infer a more precise type.  Alternatively, a type checker
-may reject the line and require an explicit annotation, like this:
+may reject the line and require an explicit annotation, like this::
 
   x = Node()  # type: Node[int]  # Inferred type is Node[int].
 
@@ -943,7 +944,7 @@
 
   stream = ...  # type: IO[str]
 
-In non-stub code, there is a similar special case:
+In non-stub code, there is a similar special case::
 
   from typing import IO
 
@@ -986,7 +987,7 @@
       return cast(str, a[index])
 
 Some type checkers may not be able to infer that the type of
-``a[index]`` is ``str`` and only infer ``object`` or ``Any``", but we
+``a[index]`` is ``str`` and only infer ``object`` or ``Any``, but we
 know that (if the code gets to that point) it must be a string.  The
 ``cast(t, x)`` call tells the type checker that we are confident that
 the type of ``x`` is ``t``.  At runtime a cast always returns the
@@ -1110,7 +1111,7 @@
 
 A constrained ``TypeVar`` type can often be used instead of using the
 ``@overload`` decorator.  For example, the definitions of ``concat1``
-and ``concat2`` in this stub file are equivalent:
+and ``concat2`` in this stub file are equivalent::
 
   from typing import TypeVar
 
@@ -1133,7 +1134,7 @@
 and using ``@overload`` is that the prior can also be used to define
 constraints for generic class type parameters.  For example, the type
 parameter of the generic class ``typing.IO`` is constrained (only
-``IO[str]``, ``IO[bytes]`` and ``IO[Any]`` are valid):
+``IO[str]``, ``IO[bytes]`` and ``IO[Any]`` are valid)::
 
   class IO(Generic[AnyStr]): ...
 

-- 
Repository URL: https://hg.python.org/peps


More information about the Python-checkins mailing list