diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-09-12 19:42:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-09-12 19:42:39 -0400 |
commit | 263f3e1da8e5a6a32056a8697286f9adf0f6a55d (patch) | |
tree | a5dc4806aa85159ed15a4c80e228d8b58de38fef /tests/modules | |
parent | ecd6ab19a43a444bc7fc9dfbc08f3ca5274365ca (diff) | |
download | python-coveragepy-git-263f3e1da8e5a6a32056a8697286f9adf0f6a55d.tar.gz |
Docs and cleanup for source_pkgs
Diffstat (limited to 'tests/modules')
-rw-r--r-- | tests/modules/ambigious/pkg1/__init__.py | 1 | ||||
-rw-r--r-- | tests/modules/ambigious/pkg1/ambigious.py | 2 | ||||
-rw-r--r-- | tests/modules/usepkgs.py | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tests/modules/ambigious/pkg1/__init__.py b/tests/modules/ambigious/pkg1/__init__.py index e69de29b..59742bbb 100644 --- a/tests/modules/ambigious/pkg1/__init__.py +++ b/tests/modules/ambigious/pkg1/__init__.py @@ -0,0 +1 @@ +print("Ambiguous pkg1") diff --git a/tests/modules/ambigious/pkg1/ambigious.py b/tests/modules/ambigious/pkg1/ambigious.py index e69de29b..6048d6da 100644 --- a/tests/modules/ambigious/pkg1/ambigious.py +++ b/tests/modules/ambigious/pkg1/ambigious.py @@ -0,0 +1,2 @@ +amb = 1 +amb = 2 diff --git a/tests/modules/usepkgs.py b/tests/modules/usepkgs.py index 63ce7c18..2e4d21a7 100644 --- a/tests/modules/usepkgs.py +++ b/tests/modules/usepkgs.py @@ -5,3 +5,4 @@ import pkg1.p1a, pkg1.p1b, pkg1.sub import pkg2.p2a, pkg2.p2b import othermods.othera, othermods.otherb import othermods.sub.osa, othermods.sub.osb +import ambigious, ambigious.pkg1.ambigious |