It seems to me that ``gl.groups.list(page=0, per_page=10)`` and ``gl.groups.list(page=1, per_page=10)`` return the same result. Page is one-based. But, in the [pagination](http://python-gitlab.readthedocs.io/en/stable/api-usage.html#pagination) section, the code sample uses ``page=0``. This may induce that page is zero-based.
It seems to me that
gl.groups.list(page=0, per_page=10)andgl.groups.list(page=1, per_page=10)return the same result. Page is one-based.But, in the pagination section, the code sample uses
page=0. This may induce that page is zero-based.