diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-09-14 04:17:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 04:17:40 (GMT) |
commit | 1401018da127c668a607bc63a14e5b6c3156f916 (patch) | |
tree | a5deea145d4dce8d75c70a5ddf33d8ec4a910937 /Lib | |
parent | 4e824e96491f33c8a8462aa4970c55942064ae76 (diff) | |
download | cpython-1401018da127c668a607bc63a14e5b6c3156f916.zip cpython-1401018da127c668a607bc63a14e5b6c3156f916.tar.gz cpython-1401018da127c668a607bc63a14e5b6c3156f916.tar.bz2 |
Remove wording that could be deemed to be perjorative (GH-9287)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_pyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py index f0d4f4e..01ef5b7 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -2283,7 +2283,7 @@ class TextIOWrapper(TextIOBase): # current pos. # Rationale: calling decoder.decode() has a large overhead # regardless of chunk size; we want the number of such calls to - # be O(1) in most situations (common decoders, non-crazy input). + # be O(1) in most situations (common decoders, sensible input). # Actually, it will be exactly 1 for fixed-size codecs (all # 8-bit codecs, also UTF-16 and UTF-32). skip_bytes = int(self._b2cratio * chars_to_skip) |