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

This commit is contained in:
Serhiy Storchaka 2020-11-03 16:15:56 +02:00 committed by GitHub
parent 74b4eda98b
commit 212d32f45c
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.