https://github.com/python/cpython/commit/d95df6a75b04932800a930f8f7356aacf0f956a7 commit: d95df6a75b04932800a930f8f7356aacf0f956a7 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Eclips4 <[email protected]> date: 2024-12-06T18:14:12Z summary:
[3.13] Fix typo in `Lib/_android_support.py` (GH-127699) (#127703) Fix typo in `Lib/_android_support.py` (GH-127699) (cherry picked from commit e59caf67cdb8dae26470f00599ea8dbb00968a73) Co-authored-by: Stan Ulbrych <[email protected]> files: M Lib/_android_support.py diff --git a/Lib/_android_support.py b/Lib/_android_support.py index 7572745c851847..ae506f6a4b57b8 100644 --- a/Lib/_android_support.py +++ b/Lib/_android_support.py @@ -6,7 +6,7 @@ # 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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
