Skip to content

Commit a6b4e2e

Browse files
authored
Merge pull request #373 from graingert/patch-1
remove references to deprecated sequence keyed by group interface
2 parents 467dba5 + 0ae0bfa commit a6b4e2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/using.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ You can get the version string for ``wheel`` by running the following::
4242
>>> version('wheel')
4343
'0.32.3'
4444

45-
You can also get the set of entry points keyed by group, such as
45+
You can also get a collection of entry points selectable by properties of the EntryPoint (typically 'group' or 'name'), such as
4646
``console_scripts``, ``distutils.commands`` and others. Each group contains a
47-
sequence of :ref:`EntryPoint <entry-points>` objects.
47+
collection of :ref:`EntryPoint <entry-points>` objects.
4848

4949
You can get the :ref:`metadata for a distribution <metadata>`::
5050

@@ -79,7 +79,7 @@ Query all entry points::
7979
>>> eps = entry_points()
8080

8181
The ``entry_points()`` function returns an ``EntryPoints`` object,
82-
a sequence of all ``EntryPoint`` objects with ``names`` and ``groups``
82+
a collection of all ``EntryPoint`` objects with ``names`` and ``groups``
8383
attributes for convenience::
8484

8585
>>> sorted(eps.groups)

0 commit comments

Comments
 (0)