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: possible error with json format for sphinx
Type: Stage:
Components: Documentation tools (Sphinx) Versions: Python 2.6
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, georg.brandl
Priority: high Keywords:

Created on 2008-01-29 03:06 by brett.cannon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg61812 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2008-01-29 03:06
I currently can't build the docs (r60374):

...
  File
"/Users/brett/Dev/python/2.x/pristine/Doc/tools/sphinx/search.py", line
70, in load
    for (k, v) in frozen[2].iteritems())
AttributeError: 'list' object has no attribute 'iteritems'
make: *** [build] Error 1


Seems to be related to the json stuff based on the full traceback.
msg61822 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-01-29 17:25
Please run a make clean (or just remove the build/html/searchindex.json
file) and this should go away.
History
Date User Action Args
2022-04-11 14:56:30adminsetgithub: 46253
2008-01-29 17:25:40georg.brandlsetstatus: open -> closed
resolution: works for me
messages: + msg61822
nosy: + georg.brandl
2008-01-29 03:06:44brett.cannoncreate