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
2314a047
Kaydet (Commit)
2314a047
authored
Eki 16, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use string methods. Re-organize imports to Python Normal Form.
üst
27c4e09a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
esis2sgml.py
Doc/tools/sgmlconv/esis2sgml.py
+4
-3
No files found.
Doc/tools/sgmlconv/esis2sgml.py
Dosyayı görüntüle @
2314a047
...
...
@@ -10,13 +10,14 @@ latex2esis.py script when run over the Python documentation.
# generated from an SGML or an XML application.
import
errno
import
esistools
import
os
import
re
import
string
from
xml.sax.saxutils
import
escape
import
esistools
AUTOCLOSE
=
()
...
...
@@ -63,7 +64,7 @@ def format_attrs(attrs, xml=0):
append
(
'
%
s="
%
s"'
%
(
name
,
escape
(
value
)))
if
parts
:
parts
.
insert
(
0
,
''
)
return
string
.
join
(
parts
)
return
" "
.
join
(
parts
)
_nmtoken_rx
=
re
.
compile
(
"[a-z][-._a-z0-9]*$"
,
re
.
IGNORECASE
)
...
...
@@ -171,7 +172,7 @@ def dump_empty_element_names(knownempties):
fp
=
open
(
EMPTIES_FILENAME
,
"w"
)
gilist
=
d
.
keys
()
gilist
.
sort
()
fp
.
write
(
string
.
join
(
gilist
,
"
\n
"
))
fp
.
write
(
"
\n
"
.
join
(
gilist
))
fp
.
write
(
"
\n
"
)
fp
.
close
()
...
...
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