Bug #2215
Updated by Ram Kordale over 2 years ago
In Python 3 Library Reference > Built-in Types > Mapping Types — dict, the processed sub headers are [class dict (**kwargs), dict, dict, list, lend]. It seems to have 2 issues: - sub header 'class dict(iterable, /*/*kwargs)' **kwargs)' has been processed to 'dict'. However, sub header 'class dict(**kwargs)' is left as it is. Shouldn't this also have become 'dict'? - remove repitition of 'dict'.