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
909507dd
Kaydet (Commit)
909507dd
authored
Eki 06, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added NullFormatter
üst
84175bac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
formatter.py
Lib/formatter.py
+21
-2
No files found.
Lib/formatter.py
Dosyayı görüntüle @
909507dd
...
...
@@ -9,6 +9,25 @@ AS_IS = None
whitespace
=
'['
+
string
.
whitespace
+
']+'
class
NullFormatter
:
def
__init__
(
self
):
pass
def
end_paragraph
(
self
,
blankline
):
pass
def
add_line_break
(
self
):
pass
def
add_hor_rule
(
self
):
pass
def
add_label_data
(
self
,
format
,
counter
):
pass
def
add_flowing_data
(
self
,
data
):
pass
def
add_literal_data
(
self
,
data
):
pass
def
flush_softspace
(
self
):
pass
def
push_font
(
self
,
x
):
pass
def
pop_font
(
self
):
pass
def
push_margin
(
self
,
margin
):
pass
def
pop_margin
(
self
):
pass
def
set_spacing
(
self
,
spacing
):
pass
def
push_style
(
self
,
style
):
pass
def
pop_style
(
self
):
pass
class
AbstractFormatter
:
def
__init__
(
self
,
writer
):
...
...
@@ -17,8 +36,8 @@ class AbstractFormatter:
self
.
margin_stack
=
[]
# Margin state
self
.
spacing
=
None
# Vertical spacing state
self
.
style_stack
=
[]
# Other state, e.g. color
self
.
nospace
=
1
# Should leading space be suppressed
self
.
softspace
=
0
# Should a space be inserted
self
.
nospace
=
1
# Should leading space be suppressed
self
.
softspace
=
0
# Should a space be inserted
def
end_paragraph
(
self
,
blankline
):
if
not
self
.
nospace
:
...
...
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