[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-07-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As a documentation issue this is a duplicate of issue26951. -- stage: -> resolved status: open -> closed superseder: -> Unintuitive error when using generator expression in class property ___ Python tracker

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-04-03 Thread Aaron Hall
Change by Aaron Hall : -- nosy: +Aaron Hall ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-06 Thread R. David Murray
Change by R. David Murray : Removed file: https://bugs.python.org/file48026/keyfile.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-06 Thread R. David Murray
Change by R. David Murray : -- components: -email nosy: -barry, r.david.murray type: security -> behavior ___ Python tracker ___ _

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-05 Thread Seval Geyik
Change by Seval Geyik : -- components: +email nosy: +barry, r.david.murray type: behavior -> security Added file: https://bugs.python.org/file48026/keyfile.png ___ Python tracker _

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue3692. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mail

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: We should remove the "equivalent to for-loops" wording for list comprehensions. That is a hold-over from 2.7 where it used to be true. That said, the list comprehension section is too early in the tutorial to go into scopes and generators, so a full exp

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: documentation of list, set & dict comprehension make no mention of buggy class scope behavior -> Comprehension doc doesn't mention buggy class scope behavior versions: +Python 3.8 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___