summaryrefslogtreecommitdiffstats
path: root/Lib/test/ann_module7.py
blob: 8f890cd28025be10203d1521c92a953b36533262 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Tests class have ``__text_signature__``

from __future__ import annotations

DEFAULT_BUFFER_SIZE = 8192

class BufferedReader(object):
    """BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n--\n\n
    Create a new buffered reader using the given readable raw IO object.
    """
    pass