[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +5359 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +5358 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +5357 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +5355 stage: resolved -> patch review ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Isn't there a missed "not"? -- nosy: +serhiy.storchaka status: closed -> open ___ Python tracker

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7 ___ Python tracker

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 42e8ea9f69c133a4bbb9e496f68a05926b99c2da by Raymond Hettinger in branch '2.7': bpo-32739: Show default value for rotate() (GH-5517) https://github.com/python/cpython/commit/42e8ea9f69c133a4bbb9e496f68a05926b99c2da

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +5349 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 7eb3d1e7da42112ba879a5f8602891fa17963f9e by Raymond Hettinger (Miss Islington (bot)) in branch '3.6': bpo-32739: Show default value for rotate() (GH-5485) (GH-5515)

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 52f745852e49498d7dd86fd309ae57f6a7af568f by Raymond Hettinger (Miss Islington (bot)) in branch '3.7': bpo-32739: Show default value for rotate() (GH-5485) (GH-5514)

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +5346 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 589c718a8e3bde017350f248f7f1c009240eb52b by Raymond Hettinger in branch 'master': bpo-32739: Show default value for rotate() (GH-5485)

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +5347 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-01 Thread Raymond Hettinger
Change by Raymond Hettinger : -- versions: +Python 3.7, Python 3.8 ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-01 Thread Raymond Hettinger
Change by Raymond Hettinger : -- keywords: +patch pull_requests: +5315 stage: -> patch review ___ Python tracker ___

[issue32739] collections.deque rotate(n=1) default value not documented

2018-02-01 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for noticing this. -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker

[issue32739] collections.deque rotate(n=1) default value not documented

2018-01-31 Thread Yang Yu
New submission from Yang Yu : https://docs.python.org/3/library/collections.html#collections.deque rotate() works the same as rotate(1). The documentation did not mention the default for n. -- assignee: docs@python components: Documentation messages: 311403 nosy: