@@ -505,8 +505,9 @@ Buffered Streams
505505
506506 The constructor creates a :class: `BufferedWriter ` for the given writeable
507507 *raw * stream. If the *buffer_size * is not given, it defaults to
508- :data: `DEFAULT_BUFFER_SIZE `. If *max_buffer_size * is omitted, it defaults to
509- twice the buffer size.
508+ :data: `DEFAULT_BUFFER_SIZE `.
509+
510+ *max_buffer_size * is unused and deprecated.
510511
511512 :class: `BufferedWriter ` provides or overrides these methods in addition to
512513 those from :class: `BufferedIOBase ` and :class: `IOBase `:
@@ -532,8 +533,9 @@ Buffered Streams
532533
533534 *reader * and *writer * are :class: `RawIOBase ` objects that are readable and
534535 writeable respectively. If the *buffer_size * is omitted it defaults to
535- :data: `DEFAULT_BUFFER_SIZE `. The *max_buffer_size * (for the buffered writer)
536- defaults to twice the buffer size.
536+ :data: `DEFAULT_BUFFER_SIZE `.
537+
538+ *max_buffer_size * is unused and deprecated.
537539
538540 :class: `BufferedRWPair ` implements all of :class: `BufferedIOBase `\' s methods.
539541
@@ -545,8 +547,9 @@ Buffered Streams
545547
546548 The constructor creates a reader and writer for a seekable raw stream, given
547549 in the first argument. If the *buffer_size * is omitted it defaults to
548- :data: `DEFAULT_BUFFER_SIZE `. The *max_buffer_size * (for the buffered writer)
549- defaults to twice the buffer size.
550+ :data: `DEFAULT_BUFFER_SIZE `.
551+
552+ *max_buffer_size * is unused and deprecated.
550553
551554 :class: `BufferedRandom ` is capable of anything :class: `BufferedReader ` or
552555 :class: `BufferedWriter ` can do.
0 commit comments