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
f1d8e7cf
Kaydet (Commit)
f1d8e7cf
authored
Ock 17, 2019
tarafından
David H
Kaydeden (comit)
Victor Stinner
Ock 17, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)
Added test for weakreferencing a uuid.UUID object.
üst
89669ffe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
test_uuid.py
Lib/test/test_uuid.py
+6
-0
uuid.py
Lib/uuid.py
+1
-1
No files found.
Lib/test/test_uuid.py
Dosyayı görüntüle @
f1d8e7cf
...
...
@@ -9,6 +9,7 @@ import pickle
import
shutil
import
subprocess
import
sys
import
weakref
from
unittest
import
mock
py_uuid
=
support
.
import_fresh_module
(
'uuid'
,
blocked
=
[
'_uuid'
])
...
...
@@ -657,6 +658,11 @@ class BaseTestUUID:
self
.
assertNotEqual
(
parent_value
,
child_value
)
def
test_uuid_weakref
(
self
):
# bpo-35701: check that weak referencing to a UUID object can be created
strong
=
self
.
uuid
.
uuid4
()
weak
=
weakref
.
ref
(
strong
)
self
.
assertIs
(
strong
,
weak
())
class
TestUUIDWithoutExtModule
(
BaseTestUUID
,
unittest
.
TestCase
):
uuid
=
py_uuid
...
...
Lib/uuid.py
Dosyayı görüntüle @
f1d8e7cf
...
...
@@ -118,7 +118,7 @@ class UUID:
uuid_generate_time_safe(3).
"""
__slots__
=
(
'int'
,
'is_safe'
)
__slots__
=
(
'int'
,
'is_safe'
,
'__weakref__'
)
def
__init__
(
self
,
hex
=
None
,
bytes
=
None
,
bytes_le
=
None
,
fields
=
None
,
int
=
None
,
version
=
None
,
...
...
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