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
57aef9cb
Kaydet (Commit)
57aef9cb
authored
Ara 07, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove outdated references to the regsub module.
üst
a6b45cc3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
formatter.py
Lib/formatter.py
+0
-1
string.py
Lib/string.py
+2
-3
stringold.py
Lib/stringold.py
+0
-1
No files found.
Lib/formatter.py
Dosyayı görüntüle @
57aef9cb
...
...
@@ -177,7 +177,6 @@ class AbstractFormatter:
def
add_flowing_data
(
self
,
data
):
if
not
data
:
return
# The following looks a bit convoluted but is a great improvement over
# data = regsub.gsub('[' + string.whitespace + ']+', ' ', data)
prespace
=
data
[:
1
]
.
isspace
()
postspace
=
data
[
-
1
:]
.
isspace
()
data
=
" "
.
join
(
data
.
split
())
...
...
Lib/string.py
Dosyayı görüntüle @
57aef9cb
...
...
@@ -43,7 +43,6 @@ del l
# Functions which aren't available as string methods.
# Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
# See also regsub.capwords().
def
capwords
(
s
,
sep
=
None
):
"""capwords(s, [sep]) -> string
...
...
@@ -78,7 +77,7 @@ def maketrans(fromstr, tostr):
return
''
.
join
(
L
)
####################################################################
import
re
as
_re
...
...
@@ -205,7 +204,7 @@ class Template:
return
self
.
pattern
.
sub
(
convert
,
self
.
template
)
####################################################################
# NOTE: Everything below here is deprecated. Use string methods instead.
# This stuff will go away in Python 3.0.
...
...
Lib/stringold.py
Dosyayı görüntüle @
57aef9cb
...
...
@@ -363,7 +363,6 @@ def capitalize(s):
return
s
.
capitalize
()
# Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
# See also regsub.capwords().
def
capwords
(
s
,
sep
=
None
):
"""capwords(s, [sep]) -> string
...
...
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