Searched full:pep8 (Results 1 – 25 of 64) sorted by relevance
123
/external/yapf/yapftests/ |
D | style_test.py | 83 # default is PEP8 88 for pep8_name in ('PEP8', 'pep8', 'Pep8'): 132 based_on_style = pep8 232 'based_on_style': 'pep8', 243 {'based_on_styl': 'pep8'}) 257 '{based_on_style: pep8,' 265 '{based_on_style : pep8' 282 '{based_on_styl: pep8}') 287 '{based_on_style: pep8')
|
D | yapf_test.py | 95 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 120 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 143 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 171 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 187 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 214 filepath, style_config='pep8', lines=[(1, 2)]) 217 filepath, style_config='pep8', lines=[(3, 3)]) 267 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 278 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') 297 formatted_code, _, _ = yapf_api.FormatFile(filepath, style_config='pep8') [all …]
|
D | reformatter_pep8_test.py | 14 """PEP8 tests for yapf.reformatter.""" 215 '{based_on_style: pep8, split_before_logical_operator: True}')) 263 '{based_on_style: pep8, split_before_first_argument: True}')) 349 style.CreateStyleFromConfig('{based_on_style: pep8, '
|
D | reformatter_python3_test.py | 123 '{based_on_style: pep8, SPACES_AROUND_POWER_OPERATOR: True}')) 140 '{based_on_style: pep8, ' 272 '{based_on_style: pep8, '
|
/external/tensorflow/tensorflow/tools/ci_build/ |
D | ci_sanity.sh | 17 # Usage: ci_sanity.sh [--pep8] [--incremental] [bazel flags] 21 # --pep8 run pep8 test only 235 # Run pep8 check 242 PEP8_BIN="/usr/local/bin/pep8" 243 PEP8_CONFIG_FILE="${SCRIPT_DIR}/pep8" 264 die "ERROR: Cannot find pep8 config file at ${PEP8_CONFIG_FILE}" 266 echo "See \"${PEP8_CONFIG_FILE}\" for pep8 config( e.g., ignored errors)" 270 echo "Running pep8 on ${NUM_SRC_FILES} files" 283 echo "pep8 took $((PEP8_END_TIME - PEP8_START_TIME)) s" 287 echo "FAIL: pep8 found above errors and/or warnings." [all …]
|
D | pep8 | 1 [pep8]
|
/external/python/httplib2/ |
D | .travis.yml | 34 env: _=py2-pep8 37 script: test_group=pep8 script/test 39 env: _=py3-pep8 42 script: test_group=pep8 script/test
|
/external/arm-trusted-firmware/ |
D | .editorconfig | 14 # [PEP8] Style Guide for Python Code 65 # [PEP8] Indentation 70 # [PEP8] Maximum Line Length
|
/external/python/uritemplates/ |
D | tox.ini | 9 pep8, 16 [testenv:pep8]
|
D | .travis.yml | 18 - env: TOXENV=pep8
|
/external/bcc/scripts/ |
D | py-style-check.sh | 6 find tools -type f -name "*.py" | xargs pep8 -r --show-source --ignore=E123,E125,E126,E127,E128,E30… 7 echo "pep8 run failed, please fix it" >&2
|
/external/python/google-api-python-client/ |
D | Makefile | 1 pep8: target 2 find googleapiclient samples -name "*.py" | xargs pep8 --ignore=E111,E202
|
/external/python/cryptography/ |
D | tox.ini | 3 envlist = py27,pypy,py34,py35,py36,py37,docs,pep8,py3pep8 60 [testenv:pep8]
|
/external/python/pyfakefs/ |
D | CONTRIBUTING.md | 36 …(your IDE or tools like [pep8](https://pypi.python.org/pypi/pep8) or [pylint](https://pypi.python.…
|
/external/yapf/ |
D | README.rst | 115 example "pep8" or "google"), or the name of a file 116 with style settings. The default is pep8 unless a 148 the predefined styles (e.g., ``pep8`` or ``google``), a path to a configuration 157 based_on_style = pep8 183 If none of those files are found, the default style is used (PEP8). 251 >>> FormatCode("def g():\n return True", style_config='pep8')
|
/external/autotest/ |
D | .style.yapf | 2 based_on_style = pep8
|
/external/chromium-trace/catapult/devil/ |
D | .style.yapf | 2 based_on_style = pep8
|
/external/scapy/ |
D | CONTRIBUTING.md | 68 [pep8](https://pypi.python.org/pypi/pep8).
|
/external/python/rsa/ |
D | setup.cfg | 8 [pep8]
|
D | .codeclimate.yml | 9 pep8:
|
/external/bcc/ |
D | .travis.yml | 4 - sudo pip install pep8
|
/external/python/asn1crypto/ |
D | tox.ini | 8 [pep8] section
|
/external/python/cryptography/.travis/ |
D | upload_coverage.sh | 9 pep8);;
|
/external/autotest/server/cros/ |
D | lockfile.py | 63 # Work with PEP8 and non-PEP8 versions of threading module.
|
/external/tensorflow/tensorflow/tools/ci_build/rel/ubuntu/ |
D | sanity.sh | 24 sudo python3.8 -m pip install pep8
|
123