/external/python/cpython2/Demo/pdist/ |
D | cmdfw.py | 89 docstrings = {} 94 if docstrings.has_key(name): 101 docstrings[name] = doc 105 if docstrings: 107 names = docstrings.keys() 110 print docstrings[name]
|
/external/tensorflow/tensorflow/python/autograph/ |
D | STYLE_GUIDE.md | 23 1. __Types in docstrings.__ Use [PEP 484][https://www.python.org/dev/peps/pep-0484/] 73 3. Avoid LaTeX in docstrings.
|
/external/python/cpython3/Tools/i18n/ |
D | pygettext.py | 331 if opts.docstrings and not opts.nodocstrings.get(self.__curfile): 496 docstrings = 0 variable in main.Options 515 options.docstrings = 1
|
/external/python/cpython2/Tools/i18n/ |
D | pygettext.py | 366 if opts.docstrings and not opts.nodocstrings.get(self.__curfile): 529 docstrings = 0 variable in main.Options 548 options.docstrings = 1
|
/external/python/cpython3/Doc/library/ |
D | doctest.rst | 7 :synopsis: Test pieces of code within docstrings. 22 * To check that a module's docstrings are up-to-date by verifying that all 154 :mod:`doctest` then examines docstrings in module :mod:`M`. 156 Running the module as a script causes the examples in the docstrings to get 266 This section examines in detail how doctest works: which docstrings it looks at, 274 .. _doctest-which-docstrings: 279 The module docstring, and all function, class and method docstrings are 284 Function and class object docstrings found from ``M.__test__`` are searched, and 285 strings are treated as if they were docstrings. In output, a key ``K`` in 290 Any classes found are recursively searched similarly, to test docstrings in [all …]
|
D | turtle.rst | 2110 via docstrings. So these can be used as online-help via the Python help 2114 docstrings of typed in function-/method calls. 2116 - Calling :func:`help` on methods or functions displays the docstrings:: 2147 - The docstrings of the functions which are derived from methods have a modified 2181 These modified docstrings are created automatically together with the function 2185 Translation of docstrings into different languages 2189 and the values of which are the docstrings of the public methods of the classes 2200 for translation of the docstrings into different languages. 2203 native language, you have to translate the docstrings and save the resulting 2207 will be read in at import time and will replace the original English docstrings. [all …]
|
/external/python/cpython2/Doc/library/ |
D | doctest.rst | 7 :synopsis: Test pieces of code within docstrings. 18 * To check that a module's docstrings are up-to-date by verifying that all 162 :mod:`doctest` then examines docstrings in module :mod:`M`. 164 Running the module as a script causes the examples in the docstrings to get 276 This section examines in detail how doctest works: which docstrings it looks at, 284 .. _doctest-which-docstrings: 289 The module docstring, and all function, class and method docstrings are 294 Function and class object docstrings found from ``M.__test__`` are searched, and 295 strings are treated as if they were docstrings. In output, a key ``K`` in 300 Any classes found are recursively searched similarly, to test docstrings in [all …]
|
D | turtle.rst | 1984 via docstrings. So these can be used as online-help via the Python help 1988 docstrings of typed in function-/method calls. 1990 - Calling :func:`help` on methods or functions displays the docstrings:: 2021 - The docstrings of the functions which are derived from methods have a modified 2055 These modified docstrings are created automatically together with the function 2059 Translation of docstrings into different languages 2063 and the values of which are the docstrings of the public methods of the classes 2074 for translation of the docstrings into different languages. 2077 native language, you have to translate the docstrings and save the resulting 2081 will be read in at import time and will replace the original English docstrings. [all …]
|
D | py_compile.rst | 7 .. documentation based on module docstrings
|
D | macosa.rst | 54 Python docstrings, so reading it is a good source of documentation.
|
/external/python/cpython2/Demo/turtle/ |
D | about_turtle.txt | 72 - If configured appropriately the module reads in docstrings from a docstring 76 docstrings to disc, so it can serve as a template for translations.
|
/external/python/cpython2/Doc/tutorial/ |
D | controlflow.rst | 231 single: docstrings 241 (More about docstrings can be found in the section :ref:`tut-docstrings`.) 242 There are tools which use docstrings to automatically produce online or printed 244 practice to include docstrings in code that you write, so make a habit of it. 575 .. _tut-docstrings: 581 single: docstrings 661 * Use docstrings.
|
D | stdlib.rst | 36 <returns an extensive manual page created from the module's docstrings> 253 tests embedded in a program's docstrings. Test construction is as simple as
|
/external/python/cpython3/Doc/tutorial/ |
D | controlflow.rst | 262 single: docstrings 272 (More about docstrings can be found in the section :ref:`tut-docstrings`.) 273 There are tools which use docstrings to automatically produce online or printed 275 practice to include docstrings in code that you write, so make a habit of it. 619 .. _tut-docstrings: 625 single: docstrings 739 * Use docstrings.
|
D | stdlib.rst | 36 <returns an extensive manual page created from the module's docstrings> 271 tests embedded in a program's docstrings. Test construction is as simple as
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.3rc1.rst | 849 IDLE - Add docstrings and tests for outwin subclass of editor. 1094 IDLE: Document ConfigDialog tk Vars, methods, and widgets in docstrings This 1114 IDLE: Add docstrings to browser.py. Patch by Cheryl Sabella. 1168 IDLE: configdialog - Add docstrings and fix comments. Patch by Cheryl 1178 IDLE: Improve textview with docstrings, PEP8 names, and more tests. Patch by 1201 IDLE: add docstrings to grep module. Patch by Cheryl Sabella
|
/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 18 bpo-35689: Add docstrings and tests for colorizer. 202 bpo-32831: Add docstrings and tests for codecontext.py. 355 bpo-30617: Add docstrings and tests for outwin subclass of editor. 440 bpo-30913: Document ConfigDialog tk Vars, methods, and widgets in docstrings 448 bpo-30881: Add docstrings to browser.py. 471 bpo-30777: Configdialog - add docstrings and improve comments. 474 bpo-30495: Improve textview with docstrings, PEP8 names, and more tests. 488 bpo-30674: Grep -- Add docstrings. Patch by Cheryl Sabella. 521 bpo-30495: Add docstrings for textview.py and use PEP8 names. 570 autocomplete. This fixes problem with writing docstrings at least
|
/external/tensorflow/tensorflow/g3doc/ |
D | README.txt | 22 at least for docs coming from Python docstrings or
|
/external/tensorflow/tensorflow/tools/ci_build/ |
D | pylintrc | 172 # Minimum line length for functions/classes that require docstrings, shorter 218 # Ignore docstrings when computing similarities. 219 ignore-docstrings=yes
|
/external/python/apitools/ |
D | default.pylintrc | 104 # Ignore docstrings when computing similarities. 105 # DEFAULT: ignore-docstrings=yes 180 # Minimum line length for functions/classes that require docstrings, shorter
|
/external/antlr/runtime/Python3/ |
D | pylintrc | 171 # Ignore docstrings when computing similarities. 172 ignore-docstrings=yes
|
/external/antlr/runtime/Python/ |
D | TODO | 49 - more documentation in docstrings
|
D | pylintrc | 291 # Ignore docstrings when computing similarities. 292 ignore-docstrings=yes
|
/external/yapf/ |
D | pylintrc | 296 # Minimum line length for functions/classes that require docstrings, shorter 315 # Ignore docstrings when computing similarities. 316 ignore-docstrings=yes
|
/external/autotest/utils/ |
D | pylintrc | 213 # Ignore docstrings when computing similarities. 214 #ignore-docstrings=yes
|