Fix a reST formatting error

This commit is contained in:
Łukasz Langa 2013-05-25 16:21:03 +02:00
parent 8190ba0c80
commit 5c1b9cc1cd
1 changed files with 7 additions and 6 deletions

View File

@ -198,7 +198,8 @@ In its most basic form, it returns the MRO for the given type::
When the haystack consists of ABCs that the specified type is a subclass
of, they are inserted in a predictable order::
>>> _compose_mro(dict, [Sized, MutableMapping, str, Sequence, Iterable])
>>> _compose_mro(dict, [Sized, MutableMapping, str,
... Sequence, Iterable])
[<class 'dict'>, <class 'collections.abc.MutableMapping'>,
<class 'collections.abc.Iterable'>, <class 'collections.abc.Sized'>,
<class 'object'>]