[issue18384] Add devhelp build instructions to the documentation makefile

2013-07-06 Thread Balthazar Rouberol
New submission from Balthazar Rouberol: The documentation makefile is missing support for Devhelp. The supplied patch fixes this for the Python 3 branch. It also edits the ouput of the sphinx build to change the name of the devhelp project. This is needed to be able to have both versions of

[issue18384] Add devhelp build instructions to the documentation makefile

2013-07-06 Thread Balthazar Rouberol
Changes by Balthazar Rouberol : Removed file: http://bugs.python.org/file30823/devhelp-build-py3.patch ___ Python tracker <http://bugs.python.org/issue18384> ___ ___ Pytho

[issue18384] Add devhelp build instructions to the documentation makefile

2013-07-06 Thread Balthazar Rouberol
Changes by Balthazar Rouberol : Added file: http://bugs.python.org/file30824/devhelp-build-py3.patch ___ Python tracker <http://bugs.python.org/issue18384> ___ ___ Pytho

[issue18384] Add devhelp build instructions to the documentation makefile (Python3)

2013-07-06 Thread Balthazar Rouberol
Changes by Balthazar Rouberol : -- title: Add devhelp build instructions to the documentation makefile -> Add devhelp build instructions to the documentation makefile (Python3) ___ Python tracker <http://bugs.python.org/issu

[issue18385] Add devhelp build instructions to the documentation makefile (Python2)

2013-07-06 Thread Balthazar Rouberol
New submission from Balthazar Rouberol: The documentation makefile is missing support for Devhelp. The supplied patch fixes this for the Python 2 branch. -- assignee: docs@python components: Documentation files: devhelp-build-py2.patch keywords: patch messages: 192458 nosy: brouberol

[issue18384] Add devhelp build instructions to the documentation makefile

2013-07-06 Thread Balthazar Rouberol
Changes by Balthazar Rouberol : -- title: Add devhelp build instructions to the documentation makefile (Python3) -> Add devhelp build instructions to the documentation makefile versions: +Python 2.7 Added file: http://bugs.python.org/file30826/devhelp-build-py2.pa

[issue10976] json.loads() throws TypeError on bytes object

2012-04-26 Thread Balthazar Rouberol
Balthazar Rouberol added the comment: I know this does not fix anything at the core, but it would allow you to use json.loads() with python 3.2 (maybe 3.1?): Replace json.loads(raw_data) by raw_data = raw_data.decode('utf-8') # Or any other ISO format json.loads(raw_data) -