bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121)

(cherry picked from commit 212d32f45c)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Skeleton (bot) 2020-11-03 13:32:59 -08:00 committed by GitHub
parent 6b7a90db36
commit 9bc07874e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -611,7 +611,7 @@ def _count_to_size(count):
elif count < 1 << 16:
return 2
elif count << 1 << 32:
elif count < 1 << 32:
return 4
else:

View File

@ -0,0 +1 @@
Fixed writing binary Plist files larger than 4 GiB.