From: Guido van Rossum Date: Fri, 29 Jul 2016 22:41:17 +0000 (-0700) Subject: Fix whitespace. X-Git-Tag: v3.6.0a4~95^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c301cbf445a890c66eec0ef0d53aad9b7d690ad5;p=thirdparty%2FPython%2Fcpython.git Fix whitespace. --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index e11c0c23d7b7..6993b316cf45 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -68,7 +68,7 @@ Use the ``NewType`` helper function to create distinct types:: UserId = NewType('UserId', int) some_id = UserId(524313) - + The static type checker will treat the new type as if it were a subclass of the original type. This is useful in helping catch logical errors::