summaryrefslogtreecommitdiffstats
path: root/contrib/python/more-itertools/py2/patches/01-fix-tests.patch
diff options
context:
space:
mode:
authorarcadia-devtools <[email protected]>2022-02-09 12:00:52 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 15:58:17 +0300
commit8e1413fed79d1e8036e65228af6c93399ccf5502 (patch)
tree502c9df7b2614d20541c7a2d39d390e9a51877cc /contrib/python/more-itertools/py2/patches/01-fix-tests.patch
parent6b813c17d56d1d05f92c61ddc347d0e4d358fe85 (diff)
intermediate changes
ref:614ed510ddd3cdf86a8c5dbf19afd113397e0172
Diffstat (limited to 'contrib/python/more-itertools/py2/patches/01-fix-tests.patch')
-rw-r--r--contrib/python/more-itertools/py2/patches/01-fix-tests.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/python/more-itertools/py2/patches/01-fix-tests.patch b/contrib/python/more-itertools/py2/patches/01-fix-tests.patch
deleted file mode 100644
index 85602736df2..00000000000
--- a/contrib/python/more-itertools/py2/patches/01-fix-tests.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- contrib/python/more-itertools/py2/more_itertools/tests/test_more.py (index)
-+++ contrib/python/more-itertools/py2/more_itertools/tests/test_more.py (working tree)
-@@ -122,13 +122,13 @@ class IterOnlyRange:
- raise an ``AttributeError`` rather than ``TypeError`` in Python 2.
-
- >>> r = IterOnlyRange(5)
-- >>> r[0]
-+ >>> r[0] # doctest: +SKIP
- AttributeError: IterOnlyRange instance has no attribute '__getitem__'
-
- Note: In Python 3, ``TypeError`` will be raised because ``object`` is
- inherited implicitly by default.
-
-- >>> r[0]
-+ >>> r[0] # doctest: +SKIP
- TypeError: 'IterOnlyRange' object does not support indexing
- """
- def __init__(self, n):