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
b5752892
Kaydet (Commit)
b5752892
authored
Tem 04, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12452: Plist and Dict are now deprecated
Replace PendingDeprecationWarning warnings by DeprecationWarning.
üst
99b95386
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
plistlib.py
Lib/plistlib.py
+5
-5
No files found.
Lib/plistlib.py
Dosyayı görüntüle @
b5752892
...
...
@@ -266,13 +266,13 @@ class _InternalDict(dict):
raise
AttributeError
(
attr
)
from
warnings
import
warn
warn
(
"Attribute access from plist dicts is deprecated, use d[key] "
"notation instead"
,
Pending
DeprecationWarning
,
2
)
"notation instead"
,
DeprecationWarning
,
2
)
return
value
def
__setattr__
(
self
,
attr
,
value
):
from
warnings
import
warn
warn
(
"Attribute access from plist dicts is deprecated, use d[key] "
"notation instead"
,
Pending
DeprecationWarning
,
2
)
"notation instead"
,
DeprecationWarning
,
2
)
self
[
attr
]
=
value
def
__delattr__
(
self
,
attr
):
...
...
@@ -282,14 +282,14 @@ class _InternalDict(dict):
raise
AttributeError
(
attr
)
from
warnings
import
warn
warn
(
"Attribute access from plist dicts is deprecated, use d[key] "
"notation instead"
,
Pending
DeprecationWarning
,
2
)
"notation instead"
,
DeprecationWarning
,
2
)
class
Dict
(
_InternalDict
):
def
__init__
(
self
,
**
kwargs
):
from
warnings
import
warn
warn
(
"The plistlib.Dict class is deprecated, use builtin dict instead"
,
Pending
DeprecationWarning
,
2
)
DeprecationWarning
,
2
)
super
()
.
__init__
(
**
kwargs
)
...
...
@@ -302,7 +302,7 @@ class Plist(_InternalDict):
def
__init__
(
self
,
**
kwargs
):
from
warnings
import
warn
warn
(
"The Plist class is deprecated, use the readPlist() and "
"writePlist() functions instead"
,
Pending
DeprecationWarning
,
2
)
"writePlist() functions instead"
,
DeprecationWarning
,
2
)
super
()
.
__init__
(
**
kwargs
)
def
fromFile
(
cls
,
pathOrFile
):
...
...
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