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
26f1dc60
Kaydet (Commit)
26f1dc60
authored
May 21, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix rmod
üst
4c3b7e4d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
collections.rst
Doc/library/collections.rst
+0
-3
__init__.py
Lib/collections/__init__.py
+4
-0
test_collections.py
Lib/test/test_collections.py
+5
-0
2019-05-14-21-39-52.bpo-25652.xLw42k.rst
...S.d/next/Library/2019-05-14-21-39-52.bpo-25652.xLw42k.rst
+1
-1
No files found.
Doc/library/collections.rst
Dosyayı görüntüle @
26f1dc60
...
...
@@ -1252,6 +1252,3 @@ attribute.
.. versionchanged:: 3.5
New methods ``__getnewargs__``, ``__rmod__``, ``casefold``,
``format_map``, ``isprintable``, and ``maketrans``.
.. versionchanged:: 3.8
The ``__rmod__`` method is removed.
Lib/collections/__init__.py
Dosyayı görüntüle @
26f1dc60
...
...
@@ -1214,6 +1214,10 @@ class UserString(_collections_abc.Sequence):
__rmul__
=
__mul__
def
__mod__
(
self
,
args
):
return
self
.
__class__
(
self
.
data
%
args
)
def
__rmod__
(
self
,
template
):
if
isinstance
(
template
,
str
):
return
self
.
__class__
(
template
%
self
)
return
NotImplemented
# the following methods are defined in alphabetical order:
def
capitalize
(
self
):
return
self
.
__class__
(
self
.
data
.
capitalize
())
def
casefold
(
self
):
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
26f1dc60
...
...
@@ -70,6 +70,11 @@ class TestUserObjects(unittest.TestCase):
obj
[
123
]
=
"abc"
self
.
_copy_test
(
obj
)
def
test_str_rmod
(
self
):
arg
=
UserString
(
"python"
)
template
=
"I love
%
s"
self
.
assertEqual
(
arg
.
__rmod__
(
template
),
"I love python"
)
self
.
assertIs
(
arg
.
__rmod__
(
type
(
'Dummy'
,
(),
{})),
NotImplemented
)
################################################################################
### ChainMap (helper class for configparser and the string module)
...
...
Misc/NEWS.d/next/Library/2019-05-14-21-39-52.bpo-25652.xLw42k.rst
Dosyayı görüntüle @
26f1dc60
The ``__rmod__`` method of ``collections.UserString`` class is removed
.
Fix bug in ``__rmod__`` of ``UserString`` - by Batuhan Taskaya
.
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