This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tkomiya
Recipients tkomiya
Date 2021-02-03.15:07:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612364825.14.0.438642767338.issue43118@roundup.psfhosted.org>
In-reply-to
Content
FWIW, I succeeded to inspect the class with importing the constant from the base module as a workaround:

```
import inspect
import io

from io import DEFAULT_BUFFER_SIZE


class MyBufferedReader(io.BufferedReader):
    """buffer reader class."""


inspect.signature(MyBufferedReader)
```
History
Date User Action Args
2021-02-03 15:07:05tkomiyasetrecipients: + tkomiya
2021-02-03 15:07:05tkomiyasetmessageid: <1612364825.14.0.438642767338.issue43118@roundup.psfhosted.org>
2021-02-03 15:07:05tkomiyalinkissue43118 messages
2021-02-03 15:07:05tkomiyacreate