Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6815155 commit 284b787Copy full SHA for 284b787
1 file changed
Doc/library/typing.rst
@@ -101,7 +101,7 @@ accidentally creating a ``UserId`` in an invalid way::
101
# 'output' is of type 'int', not 'UserId'
102
output = UserId(23413) + UserId(54341)
103
104
-Note that these checks are enforced only by the static type checker. At runtime
+Note that these checks are enforced only by the static type checker. At runtime,
105
the statement ``Derived = NewType('Derived', Base)`` will make ``Derived`` a
106
function that immediately returns whatever parameter you pass it. That means
107
the expression ``Derived(some_value)`` does not create a new class or introduce
0 commit comments