Issue 8341: sphinx bug? - Python tracker (original) (raw)

Issue8341

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:59 admin set github: 52588
2010-04-08 06:33:45 georg.brandl set status: open -> closedresolution: fixedmessages: +
2010-04-08 01🔞01 LambertDW create