From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 12 Aug 2022 17:03:37 +0000 (-0700) Subject: gh-82180: Document support for non-integer arg removed from grp.getgrgid in 3.10... X-Git-Tag: v3.10.7~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44bf05ed0cea7f9ddc0713daed38d9bb2f35c981;p=thirdparty%2FPython%2Fcpython.git gh-82180: Document support for non-integer arg removed from grp.getgrgid in 3.10 (GH-95346) (GH-95930) (cherry picked from commit 50bf5fafcceacf8d7460fd8f9fb4297ac74d3eac) Co-authored-by: Hugo van Kemenade --- diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst index baa31752a2c7..69598d43f991 100644 --- a/Doc/library/grp.rst +++ b/Doc/library/grp.rst @@ -43,9 +43,8 @@ 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. + .. versionchanged:: 3.10 + :exc:`TypeError` is raised for non-integer arguments like floats or strings. .. function:: getgrnam(name)