# Copyright (C) 2001-2018, Python Software Foundation # For licence information, see README file. # msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-08-10 00:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../Doc/library/grp.rst:2 msgid ":mod:`grp` --- The group database" msgstr "" #: ../Doc/library/grp.rst:10 msgid "" "This module provides access to the Unix group database. It is available on " "all Unix versions." msgstr "" #: ../Doc/library/grp.rst:13 msgid "" "Group database entries are reported as a tuple-like object, whose attributes " "correspond to the members of the ``group`` structure (Attribute field below, " "see ````):" msgstr "" #: ../Doc/library/grp.rst:18 msgid "Index" msgstr "Index" #: ../Doc/library/grp.rst:18 msgid "Attribute" msgstr "Attribut" #: ../Doc/library/grp.rst:18 msgid "Meaning" msgstr "Signification" #: ../Doc/library/grp.rst:20 msgid "0" msgstr "0" #: ../Doc/library/grp.rst:20 msgid "gr_name" msgstr "gr_name" #: ../Doc/library/grp.rst:20 msgid "the name of the group" msgstr "" #: ../Doc/library/grp.rst:22 msgid "1" msgstr "1" #: ../Doc/library/grp.rst:22 msgid "gr_passwd" msgstr "gr_passwd" #: ../Doc/library/grp.rst:22 msgid "the (encrypted) group password; often empty" msgstr "" #: ../Doc/library/grp.rst:25 msgid "2" msgstr "2" #: ../Doc/library/grp.rst:25 msgid "gr_gid" msgstr "gr_gid" #: ../Doc/library/grp.rst:25 msgid "the numerical group ID" msgstr "" #: ../Doc/library/grp.rst:27 msgid "3" msgstr "3" #: ../Doc/library/grp.rst:27 msgid "gr_mem" msgstr "gr_mem" #: ../Doc/library/grp.rst:27 msgid "all the group member's user names" msgstr "" #: ../Doc/library/grp.rst:31 msgid "" "The gid is an integer, name and password are strings, and the member list is " "a list of strings. (Note that most users are not explicitly listed as " "members of the group they are in according to the password database. Check " "both databases to get complete membership information. Also note that a " "``gr_name`` that starts with a ``+`` or ``-`` is likely to be a YP/NIS " "reference and may not be accessible via :func:`getgrnam` or :func:" "`getgrgid`.)" msgstr "" #: ../Doc/library/grp.rst:38 msgid "It defines the following items:" msgstr "" #: ../Doc/library/grp.rst:43 msgid "" "Return the group database entry for the given numeric group ID. :exc:" "`KeyError` is raised if the entry asked for cannot be found." msgstr "" #: ../Doc/library/grp.rst:46 msgid "" "Since Python 3.6 the support of non-integer arguments like floats or strings " "in :func:`getgrgid` is deprecated." msgstr "" #: ../Doc/library/grp.rst:52 msgid "" "Return the group database entry for the given group name. :exc:`KeyError` is " "raised if the entry asked for cannot be found." msgstr "" #: ../Doc/library/grp.rst:58 msgid "Return a list of all available group entries, in arbitrary order." msgstr "" #: ../Doc/library/grp.rst:64 msgid "Module :mod:`pwd`" msgstr "" #: ../Doc/library/grp.rst:64 msgid "An interface to the user database, similar to this." msgstr "" #: ../Doc/library/grp.rst:66 msgid "Module :mod:`spwd`" msgstr "" #: ../Doc/library/grp.rst:67 msgid "An interface to the shadow password database, similar to this." msgstr ""