We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c116c commit b66f1f0Copy full SHA for b66f1f0
rich/console.py
@@ -2028,7 +2028,7 @@ def _check_buffer(self) -> None:
2028
# https://github.com/python/cpython/issues/82052
2029
# We need to avoid writing more than 32Kb in a single write, due to the above bug
2030
write = self.file.write
2031
- # Worse case scenario, every character is a bytes of utf-8
+ # Worse case scenario, every character is 4 bytes of utf-8
2032
MAX_WRITE = 32 * 1024 // 4
2033
try:
2034
if len(text) <= MAX_WRITE:
0 commit comments