Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffcf84 commit 5df4025Copy full SHA for 5df4025
1 file changed
Tools/clinic/clinic.py
@@ -4900,7 +4900,14 @@ def main(argv):
4900
sys.exit("Error: clinic.py requires Python 3.3 or greater.")
4901
4902
import argparse
4903
- cmdline = argparse.ArgumentParser()
+ cmdline = argparse.ArgumentParser(
4904
+ description="""Preprocessor for CPython C files.
4905
+
4906
+The purpose of the Argument Clinic is automating all the boilerplate involved
4907
+with writing argument parsing code for builtins and providing introspection
4908
+signatures ("docstrings") for CPython builtins.
4909
4910
+For more information see https://docs.python.org/3/howto/clinic.html""")
4911
cmdline.add_argument("-f", "--force", action='store_true')
4912
cmdline.add_argument("-o", "--output", type=str)
4913
cmdline.add_argument("-v", "--verbose", action='store_true')
0 commit comments