mirror of
https://github.com/python/cpython.git
synced 2026-05-12 23:49:15 -04:00
Docs: Argument Clinic: Restructure "Basic concepts and usage" (#106981)
Split "Basic concepts and usage" into: - Reference - Terminology - CLI reference - Background - Basic concepts Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
This commit is contained in:
committed by
GitHub
parent
592395577c
commit
2ad699002e
+13
-7
@@ -5631,15 +5631,21 @@ with writing argument parsing code for builtins and providing introspection
|
||||
signatures ("docstrings") for CPython builtins.
|
||||
|
||||
For more information see https://docs.python.org/3/howto/clinic.html""")
|
||||
cmdline.add_argument("-f", "--force", action='store_true')
|
||||
cmdline.add_argument("-o", "--output", type=str)
|
||||
cmdline.add_argument("-v", "--verbose", action='store_true')
|
||||
cmdline.add_argument("--converters", action='store_true')
|
||||
cmdline.add_argument("-f", "--force", action='store_true',
|
||||
help="force output regeneration")
|
||||
cmdline.add_argument("-o", "--output", type=str,
|
||||
help="redirect file output to OUTPUT")
|
||||
cmdline.add_argument("-v", "--verbose", action='store_true',
|
||||
help="enable verbose mode")
|
||||
cmdline.add_argument("--converters", action='store_true',
|
||||
help=("print a list of all supported converters "
|
||||
"and return converters"))
|
||||
cmdline.add_argument("--make", action='store_true',
|
||||
help="Walk --srcdir to run over all relevant files.")
|
||||
help="walk --srcdir to run over all relevant files")
|
||||
cmdline.add_argument("--srcdir", type=str, default=os.curdir,
|
||||
help="The directory tree to walk in --make mode.")
|
||||
cmdline.add_argument("filename", type=str, nargs="*")
|
||||
help="the directory tree to walk in --make mode")
|
||||
cmdline.add_argument("filename", metavar="FILE", type=str, nargs="*",
|
||||
help="the list of files to process")
|
||||
ns = cmdline.parse_args(argv)
|
||||
|
||||
if ns.converters:
|
||||
|
||||
Reference in New Issue
Block a user