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: broken info files generation
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: arekm, loewis, zseil
Priority: normal Keywords:

Created on 2006-09-30 18:49 by arekm, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg30093 - (view) Author: Arkadiusz Miśkiewicz (arekm) Date: 2006-09-30 18:49
Hi,

Currently make -C Doc/info will not work. There are bugs 
in *.tex files which prevent py2texinfo from working. 
Also even after fixing these there are some weird 
constructs which later make makeinfo go mad.

Take a look at
http://cvs.pld-linux.org/cgi-bin/cvsweb/SOURCES/python-
info.patch
which has some fixes for that.

This one is important:
-    level=1\optional{, parent\optional\{, 
directory\optional{,
-    attributes=0}}}}
+    level=1\optional{, parent\optional{, 
directory\optional{,
+    attributes=0}}}}}


- unmatched {} + one wrongly quoted {

The other thing is using quote enviroment which is 
unknown to py2texinfo - change it to quotation.

msg30094 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-10-02 15:06
Logged In: YES 
user_id=21627

Can you please attach your proposed change as an "svn diff"
for the version you are referring to?
msg30095 - (view) Author: Ziga Seilnacht (zseil) * (Python committer) Date: 2007-03-24 16:40
This is a duplicate of bug #1595164:
http://www.python.org/sf/1595164
History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 44060
2006-09-30 18:49:18arekmcreate