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: sphinx bug?
Type: Stage:
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: LambertDW, georg.brandl
Priority: normal Keywords:

Created on 2010-04-08 01:18 by LambertDW, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg102583 - (view) Author: David W. Lambert (LambertDW) Date: 2010-04-08 01:18
http://docs.python.org/py3k/library/multiprocessing.html

Indentation is incorrect as displayed and copied from google chrome browser:


 from multiprocessing import Process

def f(name):
    print('hello', name)

 if __name__ == '__main__':
     p = Process(target=f, args=('bob',))
     p.start()
     p.join()
msg102593 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-04-08 06:33
It was a bug in the source file.  Fixed in r79901.
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52588
2010-04-08 06:33:45georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg102593
2010-04-08 01:18:01LambertDWcreate