From: Fred Drake Date: Mon, 30 Oct 2000 06:24:56 +0000 (+0000) Subject: define_module(): Change the "index sub-item" for definitions at module X-Git-Tag: v2.1a1~782 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5942b439b366b83880a2678793d36b931acef75b;p=python define_module(): Change the "index sub-item" for definitions at module scope to be " (in module )" instead of " (in )" to be consistent with \withsubitem usage throughout the documentation. This achieves consistency in indexing throughout the documentation. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 76d54f1ab0..da3cf9feaa 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -607,7 +607,7 @@ sub define_module{ } $word = "$word " if $word; $THIS_MODULE = "$name"; - $INDEX_SUBITEM = "(in $name)"; + $INDEX_SUBITEM = "(in module $name)"; print "[$name]"; return make_mod_index_entry( "$name (${word}module)", 'DEF');