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
6e1bc7ca
Kaydet (Commit)
6e1bc7ca
authored
Şub 23, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
whatsnew: textwrap.shorten.
Also add the missing TextWrapper.shorten method doc.
üst
a183064d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
textwrap.rst
Doc/library/textwrap.rst
+10
-0
3.4.rst
Doc/whatsnew/3.4.rst
+14
-0
No files found.
Doc/library/textwrap.rst
Dosyayı görüntüle @
6e1bc7ca
...
...
@@ -282,3 +282,13 @@ hyphenated words; only then will long words be broken if necessary, unless
Wraps the single paragraph in *text*, and returns a single string
containing the wrapped paragraph.
.. method:: shorten(text, width=70, *, placeholder=" [...]")
Collapse and truncate the given text to fit in the given width.
The text first has its whitespace collapsed. If it then fits in
the *width*, it is returned unchanged. Otherwise, as many words
as possible are joined and then the *placeholder* is appended.
.. versionadded:: 3.4
Doc/whatsnew/3.4.rst
Dosyayı görüntüle @
6e1bc7ca
...
...
@@ -1210,6 +1210,20 @@ especially if automated via a test suite. (Contributed by Antoine Pitrou
in :issue:`13390`.)
textwrap
--------
:mod:`textwrap` has a new function :func:`~textwrap.shorten`, implemented via a
new :class:`~textwrap.TextWrapper` method
:meth:`~textwrap.TextWrapper.shorten`, that provides a convenient way to create
a string that displays just the leading porting of an input string. It
collapses any whitespace, truncates the result to a specified width, and a
specified placeholder is added (by default, ``[...]``, stored in the new
:attr:`~textwrap.TextWrapper.placeholder` attribute of the
:class:`~textwrap.TextWrapper` object)). (Contributed by Antoine Pitrou in
:issue:`18585`.)
traceback
---------
...
...
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