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
aa763447
Kaydet (Commit)
aa763447
authored
Agu 09, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
change blank line insertion at a few places and fix recursion bug for </var>
üst
150316ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
htmllib.py
Lib/htmllib.py
+8
-8
No files found.
Lib/htmllib.py
Dosyayı görüntüle @
aa763447
...
...
@@ -227,7 +227,7 @@ class HTMLParser(SGMLParser):
self
.
formatter
.
push_margin
(
'blockquote'
)
def
end_blockquote
(
self
):
self
.
formatter
.
end_paragraph
(
0
)
self
.
formatter
.
end_paragraph
(
1
)
self
.
formatter
.
pop_margin
()
# --- List Elements
...
...
@@ -279,11 +279,11 @@ class HTMLParser(SGMLParser):
self
.
end_ul
()
def
start_dl
(
self
,
attrs
):
self
.
formatter
.
end_paragraph
(
0
)
self
.
formatter
.
end_paragraph
(
1
)
self
.
list_stack
.
append
([
'dl'
,
''
,
0
])
def
end_dl
(
self
):
self
.
ddpop
()
self
.
ddpop
(
1
)
if
self
.
list_stack
:
del
self
.
list_stack
[
-
1
]
def
do_dt
(
self
,
attrs
):
...
...
@@ -294,8 +294,8 @@ class HTMLParser(SGMLParser):
self
.
formatter
.
push_margin
(
'dd'
)
self
.
list_stack
.
append
([
'dd'
,
''
,
0
])
def
ddpop
(
self
):
self
.
formatter
.
end_paragraph
(
0
)
def
ddpop
(
self
,
bl
=
0
):
self
.
formatter
.
end_paragraph
(
bl
)
if
self
.
list_stack
:
if
self
.
list_stack
[
-
1
][
0
]
==
'dd'
:
del
self
.
list_stack
[
-
1
]
...
...
@@ -320,11 +320,11 @@ class HTMLParser(SGMLParser):
def
start_samp
(
self
,
attrs
):
self
.
start_tt
(
attrs
)
def
end_samp
(
self
):
self
.
end_tt
()
def
start_str
i
ng
(
self
,
attrs
):
self
.
start_b
(
attrs
)
def
end_
b
(
self
):
self
.
end_b
()
def
start_str
o
ng
(
self
,
attrs
):
self
.
start_b
(
attrs
)
def
end_
strong
(
self
):
self
.
end_b
()
def
start_var
(
self
,
attrs
):
self
.
start_i
(
attrs
)
def
end_var
(
self
):
self
.
end_
var
()
def
end_var
(
self
):
self
.
end_
i
()
# Typographic Elements
...
...
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