Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/_pyio.py
Original file line number Diff line number Diff line change
Expand Up @@ -2283,7 +2283,7 @@ def tell(self):
# 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)
Expand Down
4 changes: 2 additions & 2 deletions Modules/_ctypes/libffi_msvc/README
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ single-precision anyway. This causes one test to fail (the `many
arguments' test).


What's With The Crazy Comments?
===============================
What's With The Cryptic Comments?
=================================

You might notice a number of cryptic comments in the code, delimited
by /*@ and @*/. These are annotations read by the program LCLint, a
Expand Down
4 changes: 2 additions & 2 deletions Modules/_ctypes/libffi_osx/README
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ single-precision anyway. This causes one test to fail (the `many
arguments' test).


What's With The Crazy Comments?
===============================
What's With The Cryptic Comments?
=================================

You might notice a number of cryptic comments in the code, delimited
by /*@ and @*/. These are annotations read by the program LCLint, a
Expand Down
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2787,7 +2787,7 @@ def cleanup(self):

#
# This is the fourth or fifth rewrite of registering all the
# crazy string converter format units. Previous approaches hid
# string converter format units. Previous approaches hid
# bugs--generally mismatches between the semantics of the format
# unit and the arguments necessary to represent those semantics
# properly. Hopefully with this approach we'll get it 100% right.
Expand Down