summaryrefslogtreecommitdiff
path: root/Doc/library/grp.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-01-18 18:49:57 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-01-18 18:49:57 +0200
commit9cc4ed5c7a86b2aa58176222107dbb01d40a3680 (patch)
tree7a8e8b0a9ecf98a61a833e8fc6a0b69505d406c3 /Doc/library/grp.rst
parent9def2843873edde3feec6eaf2ee60c4e48172164 (diff)
downloadcpython-git-9cc4ed5c7a86b2aa58176222107dbb01d40a3680.tar.gz
Issue #26129: Deprecated accepting non-integers in grp.getgrgid().
Diffstat (limited to 'Doc/library/grp.rst')
-rw-r--r--Doc/library/grp.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst
index 88821406a3..c840cfe67a 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)