summaryrefslogtreecommitdiff
path: root/docs/userguide/entry_point.rst
diff options
context:
space:
mode:
authorSaniya Maheshwari <saniya.mah@gmail.com>2022-06-10 22:23:04 +0530
committerSaniya Maheshwari <saniya.mah@gmail.com>2022-06-11 14:16:37 +0530
commitf40d600cb512b944bc4e6be2d57700ad411840f2 (patch)
treeeb6d8b6b9e208d76d611916fb98dab4cc941f00f /docs/userguide/entry_point.rst
parent25195e02d456d175d46dc03335ac7df1c69a1a8d (diff)
downloadpython-setuptools-git-f40d600cb512b944bc4e6be2d57700ad411840f2.tar.gz
Replace 'console script' with 'console/GUI script'
In the Advertising Behaviour section.
Diffstat (limited to 'docs/userguide/entry_point.rst')
-rw-r--r--docs/userguide/entry_point.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst
index 1efa1c20..9fa72be0 100644
--- a/docs/userguide/entry_point.rst
+++ b/docs/userguide/entry_point.rst
@@ -204,7 +204,7 @@ body of the function.
Advertising Behavior
====================
-Console scripts are one use of the more general concept of entry points. Entry
+Console/GUI scripts are one use of the more general concept of entry points. Entry
points more generally allow a packager to advertise behavior for discovery by
other libraries and applications. This feature enables "plug-in"-like
functionality, where one library solicits entry points and any number of other
@@ -215,7 +215,7 @@ A good example of this plug-in behavior can be seen in
where pytest is a test framework that allows other libraries to extend
or modify its functionality through the ``pytest11`` entry point.
-The console scripts work similarly, where libraries advertise their commands
+The console/GUI scripts work similarly, where libraries advertise their commands
and tools like ``pip`` create wrapper scripts that invoke those commands.
Entry Points for Plugins