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
3672aa2d
Kaydet (Commit)
3672aa2d
authored
May 29, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
change DumbWriter to derive from NullWriter
üst
3fd32ecd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
formatter.py
Lib/formatter.py
+4
-3
No files found.
Lib/formatter.py
Dosyayı görüntüle @
3672aa2d
...
...
@@ -262,6 +262,7 @@ class AbstractFormatter:
class
NullWriter
:
"""Minimal writer interface to use in testing.
"""
def
__init__
(
self
):
pass
def
new_alignment
(
self
,
align
):
pass
def
new_font
(
self
,
font
):
pass
def
new_margin
(
self
,
margin
,
level
):
pass
...
...
@@ -275,7 +276,7 @@ class NullWriter:
def
send_literal_data
(
self
,
data
):
pass
class
AbstractWriter
:
class
AbstractWriter
(
NullWriter
)
:
def
__init__
(
self
):
pass
...
...
@@ -314,12 +315,12 @@ class AbstractWriter:
print
"send_literal_data(
%
s)"
%
`data`
class
DumbWriter
(
Abstract
Writer
):
class
DumbWriter
(
Null
Writer
):
def
__init__
(
self
,
file
=
None
,
maxcol
=
72
):
self
.
file
=
file
or
sys
.
stdout
self
.
maxcol
=
maxcol
Abstract
Writer
.
__init__
(
self
)
Null
Writer
.
__init__
(
self
)
self
.
reset
()
def
reset
(
self
):
...
...
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