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
70b9f499
Kaydet (Commit)
70b9f499
authored
Kas 19, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove deprecation of sets.Set.update().
üst
37249c55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
sets.py
Lib/sets.py
+0
-4
NEWS
Misc/NEWS
+1
-2
No files found.
Lib/sets.py
Dosyayı görüntüle @
70b9f499
...
...
@@ -504,10 +504,6 @@ class Set(BaseSet):
def
update
(
self
,
iterable
):
"""Add all values from an iterable (such as a list or file)."""
import
warnings
warnings
.
warn
(
"The update() method deprecated; "
"Use union_update() instead."
,
DeprecationWarning
,
2
)
self
.
_update
(
iterable
)
def
clear
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
70b9f499
...
...
@@ -161,8 +161,7 @@ Library
- sets.py now runs under Py2.2. In addition, the argument restrictions
for most set methods (but not the operators) have been relaxed to
allow any iterable. Also the Set.update() has been deprecated because
it duplicates Set.union_update().
allow any iterable.
- _strptime.py now has a behind-the-scenes caching mechanism for the most
recent TimeRE instance used along with the last five unique directive
...
...
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