aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/more-itertools/py3/patches/01-fix-tests.patch
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-02-09 12:00:52 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 15:58:17 +0300
commit8e1413fed79d1e8036e65228af6c93399ccf5502 (patch)
tree502c9df7b2614d20541c7a2d39d390e9a51877cc /contrib/python/more-itertools/py3/patches/01-fix-tests.patch
parent6b813c17d56d1d05f92c61ddc347d0e4d358fe85 (diff)
downloadydb-8e1413fed79d1e8036e65228af6c93399ccf5502.tar.gz
intermediate changes
ref:614ed510ddd3cdf86a8c5dbf19afd113397e0172
Diffstat (limited to 'contrib/python/more-itertools/py3/patches/01-fix-tests.patch')
-rw-r--r--contrib/python/more-itertools/py3/patches/01-fix-tests.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/python/more-itertools/py3/patches/01-fix-tests.patch b/contrib/python/more-itertools/py3/patches/01-fix-tests.patch
deleted file mode 100644
index 497d4d8da4c..00000000000
--- a/contrib/python/more-itertools/py3/patches/01-fix-tests.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- contrib/python/more-itertools/py3/tests/test_more.py (index)
-+++ contrib/python/more-itertools/py3/tests/test_more.py (working tree)
-@@ -177,13 +177,13 @@ class IterOnlyRange:
- """User-defined iterable class which only support __iter__.
-
- >>> 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
- """