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
5edf827c
Kaydet (Commit)
5edf827c
authored
Haz 07, 2017
tarafından
Jonathan Eunice
Kaydeden (comit)
Serhiy Storchaka
Haz 07, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30591: Added test for textwrap backtracking. (#1988)
üst
6f46683a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
test_textwrap.py
Lib/test/test_textwrap.py
+11
-0
No files found.
Lib/test/test_textwrap.py
Dosyayı görüntüle @
5edf827c
...
...
@@ -559,6 +559,17 @@ class MaxLinesTestCase(BaseTestCase):
placeholder
=
' [truncated]...'
)
self
.
check_wrap
(
self
.
text
,
80
,
[
self
.
text
],
placeholder
=
'.'
*
1000
)
def
test_placeholder_backtrack
(
self
):
# Test special case when max_lines insufficient, but what
# would be last wrapped line so long the placeholder cannot
# be added there without violence. So, textwrap backtracks,
# adding placeholder to the penultimate line.
text
=
'Good grief Python features are advancing quickly!'
self
.
check_wrap
(
text
,
12
,
[
'Good grief'
,
'Python*****'
],
max_lines
=
3
,
placeholder
=
'*****'
)
class
LongWordTestCase
(
BaseTestCase
):
def
setUp
(
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