Add note to sys.orig_argv clarifying the difference from sys.argv (#114630)

Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
This commit is contained in:
Bradley Reynolds 2024-01-31 15:33:28 -06:00 committed by GitHub
parent b25b7462d5
commit 1836f674c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1293,7 +1293,10 @@ always available.
The list of the original command line arguments passed to the Python
executable.
See also :data:`sys.argv`.
The elements of :data:`sys.orig_argv` are the arguments to the Python interpreter,
while the elements of :data:`sys.argv` are the arguments to the user's program.
Arguments consumed by the interpreter itself will be present in :data:`sys.orig_argv`
and missing from :data:`sys.argv`.
.. versionadded:: 3.10