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
b258bedb
Kaydet (Commit)
b258bedb
authored
Şub 12, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Jon Nelson <jnelson@users.sourceforge.net>:
Make the documentation tools compatibile with Python 2.0.
üst
90f22fee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
mkhowto
Doc/tools/mkhowto
+2
-2
mkmodindex
Doc/tools/mkmodindex
+2
-2
support.py
Doc/tools/support.py
+5
-4
No files found.
Doc/tools/mkhowto
Dosyayı görüntüle @
b258bedb
...
...
@@ -297,7 +297,7 @@ class Job:
# let the doctype-specific handler do some intermediate work:
#
self
.
run
(
"
%
s
%
s"
%
(
binary
,
self
.
doc
))
self
.
latex_runs
+=
1
self
.
latex_runs
=
self
.
latex_runs
+
1
if
os
.
path
.
isfile
(
"mod
%
s.idx"
%
self
.
doc
):
self
.
run
(
"
%
s -s
%
s mod
%
s.idx"
%
(
MAKEINDEX_BINARY
,
ISTFILE
,
self
.
doc
))
...
...
@@ -319,7 +319,7 @@ class Job:
if
self
.
use_bibtex
:
self
.
run
(
"
%
s
%
s"
%
(
BIBTEX_BINARY
,
self
.
doc
))
self
.
run
(
"
%
s
%
s"
%
(
binary
,
self
.
doc
))
self
.
latex_runs
+=
1
self
.
latex_runs
=
self
.
latex_runs
+
1
def
process_synopsis_files
(
self
):
synopsis_files
=
glob
.
glob
(
self
.
doc
+
"*.syn"
)
...
...
Doc/tools/mkmodindex
Dosyayı görüntüle @
b258bedb
...
...
@@ -117,9 +117,9 @@ def main():
html
=
string
.
join
(
parts
,
''
)
program
=
os
.
path
.
basename
(
sys
.
argv
[
0
])
fp
=
options
.
get_output_file
()
print
>>
fp
,
html
.
rstrip
(
)
fp
.
write
(
string
.
rstrip
(
html
)
+
"
\n
"
)
if
options
.
outputfile
==
"-"
:
print
>>
sys
.
stderr
,
"
%
s:
%
d index nodes"
%
(
program
,
num_nodes
)
sys
.
stderr
.
write
(
"
%
s:
%
d index nodes
\n
"
%
(
program
,
num_nodes
)
)
else
:
print
print
"
%
s:
%
d index nodes"
%
(
program
,
num_nodes
)
...
...
Doc/tools/support.py
Dosyayı görüntüle @
b258bedb
...
...
@@ -8,6 +8,7 @@ __version__ = '$Revision$'
import
getopt
import
string
import
sys
...
...
@@ -37,9 +38,9 @@ class Options:
def
add_args
(
self
,
short
=
None
,
long
=
None
):
if
short
:
self
.
__short_args
+=
short
self
.
__short_args
=
self
.
__short_args
+
short
if
long
:
self
.
__long_args
+=
long
self
.
__long_args
=
self
.
__long_args
+
long
def
parse
(
self
,
args
):
try
:
...
...
@@ -49,10 +50,10 @@ class Options:
sys
.
stdout
=
sys
.
stderr
self
.
usage
()
sys
.
exit
(
2
)
self
.
args
+=
args
self
.
args
=
self
.
args
+
args
for
opt
,
val
in
opts
:
if
opt
in
(
"-a"
,
"--address"
):
val
=
val
.
strip
(
)
val
=
string
.
strip
(
val
)
if
val
:
val
=
"<address>
\n
%
s
\n
</address>
\n
"
%
val
self
.
variables
[
"address"
]
=
val
...
...
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