[issue38558] Data Structures documentation out of sync with new Walrus operator

2020-02-03 Thread miss-islington
miss-islington added the comment: New changeset d01ae1b22330992eadc7b2a0842ead544f7e507d by Miss Islington (bot) in branch '3.8': bpo-38558: Link to further docs from walrus operator mention in tutorial (GH-16973)

[issue38558] Data Structures documentation out of sync with new Walrus operator

2020-02-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +17707 pull_request: https://github.com/python/cpython/pull/18335 ___ Python tracker ___

[issue38558] Data Structures documentation out of sync with new Walrus operator

2020-02-03 Thread Julien Palard
Julien Palard added the comment: New changeset 5807efd4c396d5718325e21f5a14e324a77ff77c by Adorilson Bezerra in branch 'master': bpo-38558: Link to further docs from walrus operator mention in tutorial (GH-16973)

[issue38558] Data Structures documentation out of sync with new Walrus operator

2020-01-19 Thread Adorilson Bezerra
Change by Adorilson Bezerra : -- pull_requests: +17458 pull_request: https://github.com/python/cpython/pull/16973 ___ Python tracker ___

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-26 Thread Matt Ward
Matt Ward added the comment: You're welcome! On Fri, Oct 25, 2019 at 10:53 PM Ammar Askar wrote: > > Ammar Askar added the comment: > > Thank you for the report Matt! > > -- > nosy: +ammar2 > resolution: -> fixed > stage: patch review -> resolved > status: open -> closed >

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-25 Thread Ammar Askar
Ammar Askar added the comment: Thank you for the report Matt! -- nosy: +ammar2 resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 ___ Python tracker

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-25 Thread miss-islington
miss-islington added the comment: New changeset cf028b57169499f82b73dd0977fe0bab40778a60 by Miss Skeleton (bot) in branch '3.8': bpo-38558: Mention `:=` in conditions tutorial (GH-16919) https://github.com/python/cpython/commit/cf028b57169499f82b73dd0977fe0bab40778a60 -- nosy:

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-25 Thread Zachary Ware
Zachary Ware added the comment: New changeset cb2cf06b0aad1851f54999497c1b50c381d1fdd8 by Zachary Ware (Ammar Askar) in branch 'master': bpo-38558: Mention `:=` in conditions tutorial (GH-16919) https://github.com/python/cpython/commit/cb2cf06b0aad1851f54999497c1b50c381d1fdd8 --

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +16456 pull_request: https://github.com/python/cpython/pull/16926 ___ Python tracker ___

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-24 Thread Ammar Askar
Change by Ammar Askar : -- keywords: +patch pull_requests: +16451 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16919 ___ Python tracker ___

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +emilyemorehouse ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-22 Thread Matt Ward
New submission from Matt Ward : The 3.8 documentation still includes the text. ```Note that in Python, unlike C, assignment cannot occur inside expressions. C programmers may grumble about this, but it avoids a common class of problems encountered in C programs: typing = in an expression