mirror of https://github.com/python/cpython
bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121)
This commit is contained in:
parent
74b4eda98b
commit
212d32f45c
|
@ -611,7 +611,7 @@ def _count_to_size(count):
|
||||||
elif count < 1 << 16:
|
elif count < 1 << 16:
|
||||||
return 2
|
return 2
|
||||||
|
|
||||||
elif count << 1 << 32:
|
elif count < 1 << 32:
|
||||||
return 4
|
return 4
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Fixed writing binary Plist files larger than 4 GiB.
|
Loading…
Reference in New Issue