diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-12 11:15:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 11:15:01 (GMT) |
commit | f6595983e08fe20cf06a2535d74d912c6dbb044f (patch) | |
tree | d25d4e69e082af9db5f9cc469eabb93834b0bd7d /Doc | |
parent | 1989763f0d0858ce6274f5e1d725b5b8da91a780 (diff) | |
download | cpython-f6595983e08fe20cf06a2535d74d912c6dbb044f.zip cpython-f6595983e08fe20cf06a2535d74d912c6dbb044f.tar.gz cpython-f6595983e08fe20cf06a2535d74d912c6dbb044f.tar.bz2 |
bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. (#507)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 71ae10b..4f84e6d 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -180,6 +180,10 @@ Deprecated both deprecated in Python 3.4 now emit :exc:`DeprecationWarning`. (Contributed by Matthias Bussonnier in :issue:`29576`) +- Using non-integer value for selecting a plural form in :mod:`gettext` is + now deprecated. It never correctly worked. + (Contributed by Serhiy Storchaka in :issue:`28692`.) + Removed ======= |