diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-08 11:31:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-08 11:31:35 (GMT) |
commit | d05b000c6bcd39dba4f4b2656e45954802649562 (patch) | |
tree | cc375d0d253bebcc72a73d805d8273bd3d870386 /Misc | |
parent | d7c387384a27f37e4e3fa7890c859212c56b45b2 (diff) | |
download | cpython-d05b000c6bcd39dba4f4b2656e45954802649562.zip cpython-d05b000c6bcd39dba4f4b2656e45954802649562.tar.gz cpython-d05b000c6bcd39dba4f4b2656e45954802649562.tar.bz2 |
bpo-38371: Tkinter: deprecate the split() method. (GH-16584)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-04-18-39-59.bpo-38371.S6Klvm.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-04-18-39-59.bpo-38371.S6Klvm.rst b/Misc/NEWS.d/next/Library/2019-10-04-18-39-59.bpo-38371.S6Klvm.rst new file mode 100644 index 0000000..5833995 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-04-18-39-59.bpo-38371.S6Klvm.rst @@ -0,0 +1,3 @@ +Deprecated the ``split()`` method in :class:`_tkinter.TkappType` in favour +of the ``splitlist()`` method which has more consistent and predicable +behavior. |