Skip to content

Commit e949bae

Browse files
authored
Merge pull request #412 from jdufresne/empty-dir
Remove empty and unused past.tests module
2 parents 9c67761 + e941551 commit e949bae

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"past.builtins",
4747
"past.types",
4848
"past.utils",
49-
# "past.tests",
5049
"past.translation",
5150
"libfuturize",
5251
"libfuturize.fixes",

src/past/builtins/noniterators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def oldmap(func, *iterables):
7272
>>> oldmap(None, range(4))
7373
[0, 1, 2, 3]
7474
75-
More test cases are in past.tests.test_builtins.
75+
More test cases are in test_past.test_builtins.
7676
"""
7777
zipped = itertools.zip_longest(*iterables)
7878
l = list(zipped)

src/past/tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)