diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 10:43:46 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 10:43:46 -0400 |
| commit | dc0d0c613de54cd5af74a1d3ac9d86235dc0aee9 (patch) | |
| tree | f4c22b17e68b68212fcdd30cd30d56c5a0b0582e /tests/modules/pkg1 | |
| parent | d86dc0901812723ab470006430e0591d1dca99a3 (diff) | |
| download | python-coveragepy-dc0d0c613de54cd5af74a1d3ac9d86235dc0aee9.tar.gz | |
Add license mention to the top of all files. #313.
Diffstat (limited to 'tests/modules/pkg1')
| -rw-r--r-- | tests/modules/pkg1/p1a.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/p1b.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/p1c.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/runmod2.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/sub/ps1a.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/sub/runmod3.py | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/tests/modules/pkg1/p1a.py b/tests/modules/pkg1/p1a.py index 337add4..5d81b1f 100644 --- a/tests/modules/pkg1/p1a.py +++ b/tests/modules/pkg1/p1a.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 os, sys # Invoke functions in os and sys so we can see if we measure code there. diff --git a/tests/modules/pkg1/p1b.py b/tests/modules/pkg1/p1b.py index 59d6fb5..53505ce 100644 --- a/tests/modules/pkg1/p1b.py +++ b/tests/modules/pkg1/p1b.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 + x = 1 y = 2 z = 3 diff --git a/tests/modules/pkg1/p1c.py b/tests/modules/pkg1/p1c.py index a9aeef0..98f319e 100644 --- a/tests/modules/pkg1/p1c.py +++ b/tests/modules/pkg1/p1c.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 + a = 1 b = 2 c = 3 diff --git a/tests/modules/pkg1/runmod2.py b/tests/modules/pkg1/runmod2.py index b52964c..5911db7 100644 --- a/tests/modules/pkg1/runmod2.py +++ b/tests/modules/pkg1/runmod2.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 + # Used in the tests for run_python_module import sys print("runmod2: passed %s" % sys.argv[1]) diff --git a/tests/modules/pkg1/sub/ps1a.py b/tests/modules/pkg1/sub/ps1a.py index 4b6a15c..44d3b27 100644 --- a/tests/modules/pkg1/sub/ps1a.py +++ b/tests/modules/pkg1/sub/ps1a.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 + d = 1 e = 2 f = 3 diff --git a/tests/modules/pkg1/sub/runmod3.py b/tests/modules/pkg1/sub/runmod3.py index 3a1ad15..1f5ce27 100644 --- a/tests/modules/pkg1/sub/runmod3.py +++ b/tests/modules/pkg1/sub/runmod3.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 + # Used in the tests for run_python_module import sys print("runmod3: passed %s" % sys.argv[1]) |
