diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-03 19:39:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 19:39:55 (GMT) |
commit | 27c623c845dd6e4b8e1782666ca3a956636da266 (patch) | |
tree | 34f5e36867c4bb5431c77e77c3b7f5cd0002cb99 /Misc | |
parent | 929b40a601db868530d6beaafb3256822103a7fb (diff) | |
download | cpython-27c623c845dd6e4b8e1782666ca3a956636da266.zip cpython-27c623c845dd6e4b8e1782666ca3a956636da266.tar.gz cpython-27c623c845dd6e4b8e1782666ca3a956636da266.tar.bz2 |
bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866)
when pass a string larger than 2 GiB.
Decrease memory requirements for Tcl's bigmem tests.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-10-03-15-06-24.bpo-31675.Nh7jJ3.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-03-15-06-24.bpo-31675.Nh7jJ3.rst b/Misc/NEWS.d/next/Library/2017-10-03-15-06-24.bpo-31675.Nh7jJ3.rst new file mode 100644 index 0000000..4e44307 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-10-03-15-06-24.bpo-31675.Nh7jJ3.rst @@ -0,0 +1,2 @@ +Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a +string larger than 2 GiB. |