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 /Doc | |
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 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 9f2a659..6b4abc0 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -191,6 +191,11 @@ Deprecated the module will restrict its seeds to :const:`None`, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, and :class:`bytearray`. +* Deprecated the ``split()`` method of :class:`_tkinter.TkappType` in + favour of the ``splitlist()`` method which has more consistent and + predicable behavior. + (Contributed by Serhiy Storchaka in :issue:`38371`.) + Removed ======= |