summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>2024-12-06 17:50:58 (GMT)
committerGitHub <noreply@github.com>2024-12-06 17:50:58 (GMT)
commite59caf67cdb8dae26470f00599ea8dbb00968a73 (patch)
tree965b4e1ec35cead607958682fd6db54d87a332f8 /Lib
parent89fa7ec74e531870a8f495d5e32ec0b00dbcd32b (diff)
downloadcpython-e59caf67cdb8dae26470f00599ea8dbb00968a73.zip
cpython-e59caf67cdb8dae26470f00599ea8dbb00968a73.tar.gz
cpython-e59caf67cdb8dae26470f00599ea8dbb00968a73.tar.bz2
Fix typo in `Lib/_android_support.py` (#127699)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/_android_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_android_support.py b/Lib/_android_support.py
index 7572745..ae506f6 100644
--- a/Lib/_android_support.py
+++ b/Lib/_android_support.py
@@ -6,7 +6,7 @@ from time import sleep, time
# The maximum length of a log message in bytes, including the level marker and
# tag, is defined as LOGGER_ENTRY_MAX_PAYLOAD at
# https://cs.android.com/android/platform/superproject/+/android-14.0.0_r1:system/logging/liblog/include/log/log.h;l=71.
-# Messages longer than this will be be truncated by logcat. This limit has already
+# Messages longer than this will be truncated by logcat. This limit has already
# been reduced at least once in the history of Android (from 4076 to 4068 between
# API level 23 and 26), so leave some headroom.
MAX_BYTES_PER_WRITE = 4000