diff options
-rw-r--r-- | .editorconfig | 32 | ||||
-rw-r--r-- | howto.txt | 10 | ||||
-rw-r--r-- | perf/bug397.py (renamed from lab/bug397.py) | 0 | ||||
-rw-r--r-- | perf/stress_test.py | 3 |
4 files changed, 38 insertions, 7 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..abbba2ac --- /dev/null +++ b/.editorconfig @@ -0,0 +1,32 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt + +# This file is for unifying the coding style for different editors and IDEs. +# More information at http://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 80 +trim_trailing_whitespace = true + +[*.py] +max_line_length = 100 + +[*.c] +max_line_length = 100 + +[*.h] +max_line_length = 100 + +[*.yml] +indent_size = 2 + +[Makefile] +indent_style = tab +indent_size = 8 @@ -1,9 +1,3 @@ -* Making a working tree - -mkvirtualenv -p /usr/local/pythonz/pythons/CPython-2.7.11/bin/python coverage -pip install -U pip -pip install -r requirements/dev.pip - * Release checklist - Version number in coverage/version.py @@ -14,7 +8,9 @@ pip install -r requirements/dev.pip - Python version number in classifiers in setup.py - Copyright date in NOTICE.txt - Update CHANGES.rst, including release date. -- Update README.rst, including "New in x.y:" +- Update README.rst + - "New in x.y:" + - version number in the commits-since badge - Update docs - Version, date, and changes in doc/changes.rst - Version, date and python versions in doc/index.rst diff --git a/lab/bug397.py b/perf/bug397.py index 4d72e908..4d72e908 100644 --- a/lab/bug397.py +++ b/perf/bug397.py diff --git a/perf/stress_test.py b/perf/stress_test.py index a32f313a..8ead6ce4 100644 --- a/perf/stress_test.py +++ b/perf/stress_test.py @@ -1,3 +1,6 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt + import csv from collections import namedtuple import os |