This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: PEP 342 double colons typos in code
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: delimitry, docs@python
Priority: normal Keywords:

Created on 2018-02-01 17:43 by delimitry, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg311458 - (view) Author: Dmitry Alimov (delimitry) * Date: 2018-02-01 17:43
I've found "double colons" typos in examples:

@consumer
def jpeg_writer(dirname)::  # 1) here
    fileno = 1

and

        try:
            while self.running and self.queue::  # 2) here
               func = self.queue.popleft()
msg311459 - (view) Author: Dmitry Alimov (delimitry) * Date: 2018-02-01 17:45
https://github.com/python/peps/pull/567
msg311461 - (view) Author: Dmitry Alimov (delimitry) * Date: 2018-02-01 18:07
Merged. It's fixed now: https://www.python.org/dev/peps/pep-0342/
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 76925
2018-02-01 18:07:42delimitrysetstatus: open -> closed
resolution: fixed
messages: + msg311461

stage: resolved
2018-02-01 17:45:39delimitrysetmessages: + msg311459
2018-02-01 17:43:36delimitrycreate