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
eb287a26
Kaydet (Commit)
eb287a26
authored
Eki 02, 2002
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix an endcase bug: initial_indent was ignored when the text was short
enough to fit in one line.
üst
fb4d6ecd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
test_textwrap.py
Lib/test/test_textwrap.py
+13
-3
textwrap.py
Lib/textwrap.py
+3
-2
No files found.
Lib/test/test_textwrap.py
Dosyayı görüntüle @
eb287a26
...
...
@@ -33,11 +33,11 @@ class BaseTestCase(unittest.TestCase):
'expected:
\n
%
s
\n
but got:
\n
%
s'
%
(
self
.
show
(
expect
),
self
.
show
(
result
)))
def
check_wrap
(
self
,
text
,
width
,
expect
):
result
=
wrap
(
text
,
width
)
def
check_wrap
(
self
,
text
,
width
,
expect
,
**
kwargs
):
result
=
wrap
(
text
,
width
,
**
kwargs
)
self
.
check
(
result
,
expect
)
def
check_split
(
self
,
wrapper
,
text
,
expect
):
def
check_split
(
self
,
wrapper
,
text
,
expect
):
result
=
wrapper
.
_split
(
text
)
self
.
assertEquals
(
result
,
expect
,
"
\n
expected
%
r
\n
"
...
...
@@ -101,6 +101,16 @@ What a mess!
self
.
check_wrap
(
text
,
40
,
[
"This is a short paragraph."
])
def
test_wrap_short_1line
(
self
):
# Test endcases
text
=
"This is a short line."
self
.
check_wrap
(
text
,
30
,
[
"This is a short line."
])
self
.
check_wrap
(
text
,
30
,
[
"(1) This is a short line."
],
initial_indent
=
"(1) "
)
def
test_hyphenated
(
self
):
# Test breaking hyphenated words
...
...
Lib/textwrap.py
Dosyayı görüntüle @
eb287a26
...
...
@@ -237,8 +237,9 @@ class TextWrapper:
converted to space.
"""
text
=
self
.
_munge_whitespace
(
text
)
if
len
(
text
)
<=
self
.
width
:
return
[
text
]
indent
=
self
.
initial_indent
if
len
(
text
)
+
len
(
indent
)
<=
self
.
width
:
return
[
indent
+
text
]
chunks
=
self
.
_split
(
text
)
if
self
.
fix_sentence_endings
:
self
.
_fix_sentence_endings
(
chunks
)
...
...
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