mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 01:46:46 +07:00
13 lines
379 B
Python
13 lines
379 B
Python
"""Skeleton for 'itertools' stdlib module."""
|
|
|
|
class islice(object):
|
|
def __init__(self, iterable, start, stop=None, step=None):
|
|
"""
|
|
:type iterable: collections.Iterable[T]
|
|
:type start: numbers.Integral
|
|
:type stop: numbers.Integral | None
|
|
:type step: numbers.Integral | None
|
|
:rtype: itertools.islice[T]
|
|
"""
|
|
pass
|