[issue9087] json docstrings on 3.x still use 'unicode' and 'str'

2010-08-02 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r83560. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue9087] json docstrings on 3.x still use 'unicode' and 'str'

2010-06-26 Thread Ezio Melotti
New submission from Ezio Melotti : In the json package there are still lot of docstrings that refer to 'unicode' and 'str' instead of 'str' and 'bytes' (AFAIU 'bytes' are not even allowed anymore in several places, so there should probably be only 'str' there). A few examples: * in json/__init_