diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-01-18 16:49:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-01-18 16:49:57 (GMT) |
commit | 9cc4ed5c7a86b2aa58176222107dbb01d40a3680 (patch) | |
tree | 7a8e8b0a9ecf98a61a833e8fc6a0b69505d406c3 /Doc | |
parent | 9def2843873edde3feec6eaf2ee60c4e48172164 (diff) | |
download | cpython-9cc4ed5c7a86b2aa58176222107dbb01d40a3680.zip cpython-9cc4ed5c7a86b2aa58176222107dbb01d40a3680.tar.gz cpython-9cc4ed5c7a86b2aa58176222107dbb01d40a3680.tar.bz2 |
Issue #26129: Deprecated accepting non-integers in grp.getgrgid().
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/grp.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst index 8882140..c840cfe 100644 --- a/Doc/library/grp.rst +++ b/Doc/library/grp.rst @@ -42,6 +42,9 @@ It defines the following items: Return the group database entry for the given numeric group ID. :exc:`KeyError` is raised if the entry asked for cannot be found. + .. deprecated:: 3.6 + Since Python 3.6 the support of non-integer arguments like floats or + strings in :func:`getgrgid` is deprecated. .. function:: getgrnam(name) |