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: Patch to allow building of paper-*/dist.pdf
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: jepler, nnorwitz
Priority: normal Keywords: patch

Created on 2004-08-09 11:51 by jepler, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
make-pdf-dist.patch jepler, 2004-08-09 11:51 patch against cvs version of .../dist.tex
Messages (3)
msg46608 - (view) Author: Jeff Epler (jepler) Date: 2004-08-09 11:51
Building dist.pdf I get a traceback which ends
  File
"/usr/src/cvs-src/python/dist/src/Doc/tools/toc2bkm.py",
line 68, in parse_toc
    direction = _transition_map[(level, stype)]
KeyError: ('section', 'subsubsection')

The error seems to exist because the structure of the
document has
\section{API Reference}
...
\subsubsection{something else}
without an intervening \subsection.  

This patch fixes the problem by making the items under
API reference all \subsection{}s, which may or may not
be what was intended.
msg46609 - (view) Author: Jeff Epler (jepler) Date: 2004-08-09 11:53
Logged In: YES 
user_id=2772

Oops, I forgot to set the category & group!
msg46610 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2004-08-13 02:57
Logged In: YES 
user_id=33168

You're solution works for me.  Thanks!

Checked in as:  dist/dist.tex 1.84
History
Date User Action Args
2022-04-11 14:56:06adminsetgithub: 40726
2004-08-09 11:51:57jeplercreate