Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
9dce7b37
Kaydet (Commit)
9dce7b37
authored
Kas 03, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make sure we clean up the index data each time it is written by LaTeX.
üst
4bc0aed3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
mkhowto
Doc/tools/mkhowto
+4
-1
No files found.
Doc/tools/mkhowto
Dosyayı görüntüle @
9dce7b37
...
...
@@ -279,7 +279,9 @@ class Job:
if
self
.
latex_runs
<
2
:
if
os
.
path
.
isfile
(
"mod
%
s.idx"
%
self
.
doc
):
self
.
run
(
"
%
s mod
%
s.idx"
%
(
MAKEINDEX_BINARY
,
self
.
doc
))
use_indfix
=
0
if
os
.
path
.
isfile
(
self
.
doc
+
".idx"
):
use_indfix
=
1
# call to Doc/tools/fix_hack omitted; doesn't appear necessary
self
.
run
(
"
%
s
%
s.idx"
%
(
MAKEINDEX_BINARY
,
self
.
doc
))
import
indfix
...
...
@@ -295,9 +297,10 @@ class Job:
if
os
.
path
.
isfile
(
"mod
%
s.idx"
%
self
.
doc
):
self
.
run
(
"
%
s -s
%
s mod
%
s.idx"
%
(
MAKEINDEX_BINARY
,
ISTFILE
,
self
.
doc
))
if
os
.
path
.
isfile
(
self
.
doc
+
".idx"
)
:
if
use_indfix
:
self
.
run
(
"
%
s -s
%
s
%
s.idx"
%
(
MAKEINDEX_BINARY
,
ISTFILE
,
self
.
doc
))
indfix
.
process
(
self
.
doc
+
".ind"
)
self
.
process_synopsis_files
()
#
# and now finish it off:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment