Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40304: Correct type(name, bases, dict) doc #19553

Merged
merged 9 commits into from Jan 22, 2021
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Expand Up @@ -1698,7 +1698,7 @@ are always available. They are listed here in alphabetical order.
>>> class X:
... a = 1
...
>>> X = type('X', (object,), dict(a=1))
>>> X = type('X', (), {'a': 1})

See also :ref:`bltin-type-objects`.

Expand Down