diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-09 12:00:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 15:58:17 +0300 |
commit | 8e1413fed79d1e8036e65228af6c93399ccf5502 (patch) | |
tree | 502c9df7b2614d20541c7a2d39d390e9a51877cc /contrib/python/more-itertools/py3/patches/01-fix-tests.patch | |
parent | 6b813c17d56d1d05f92c61ddc347d0e4d358fe85 (diff) | |
download | ydb-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.patch | 17 |
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 - """ |