Bug #2215
Need correction in processing sub-headers
Start date:
03/27/2022
Due date:
% Done:
0%
Estimated time:
Description
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)' has been processed to 'dict'. However, sub header 'class dict(*kwargs)' is left as it is. Shouldn't this also have become 'dict'?
- remove repetition of 'dict'.