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
947ff387
Kaydet (Commit)
947ff387
authored
Haz 02, 2016
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#20973: add total ordering tests for ipaddress
Patch by Tommy Beadle.
üst
f5854148
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
test_ipaddress.py
Lib/test/test_ipaddress.py
+33
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_ipaddress.py
Dosyayı görüntüle @
947ff387
...
@@ -587,8 +587,16 @@ class ComparisonTests(unittest.TestCase):
...
@@ -587,8 +587,16 @@ class ComparisonTests(unittest.TestCase):
v4_objects
=
v4_addresses
+
[
v4net
]
v4_objects
=
v4_addresses
+
[
v4net
]
v6_addresses
=
[
v6addr
,
v6intf
]
v6_addresses
=
[
v6addr
,
v6intf
]
v6_objects
=
v6_addresses
+
[
v6net
]
v6_objects
=
v6_addresses
+
[
v6net
]
objects
=
v4_objects
+
v6_objects
objects
=
v4_objects
+
v6_objects
v4addr2
=
ipaddress
.
IPv4Address
(
2
)
v4net2
=
ipaddress
.
IPv4Network
(
2
)
v4intf2
=
ipaddress
.
IPv4Interface
(
2
)
v6addr2
=
ipaddress
.
IPv6Address
(
2
)
v6net2
=
ipaddress
.
IPv6Network
(
2
)
v6intf2
=
ipaddress
.
IPv6Interface
(
2
)
def
test_foreign_type_equality
(
self
):
def
test_foreign_type_equality
(
self
):
# __eq__ should never raise TypeError directly
# __eq__ should never raise TypeError directly
other
=
object
()
other
=
object
()
...
@@ -607,6 +615,31 @@ class ComparisonTests(unittest.TestCase):
...
@@ -607,6 +615,31 @@ class ComparisonTests(unittest.TestCase):
continue
continue
self
.
assertNotEqual
(
lhs
,
rhs
)
self
.
assertNotEqual
(
lhs
,
rhs
)
def
test_same_type_equality
(
self
):
for
obj
in
self
.
objects
:
self
.
assertEqual
(
obj
,
obj
)
self
.
assertLessEqual
(
obj
,
obj
)
self
.
assertGreaterEqual
(
obj
,
obj
)
def
test_same_type_ordering
(
self
):
for
lhs
,
rhs
in
(
(
self
.
v4addr
,
self
.
v4addr2
),
(
self
.
v4net
,
self
.
v4net2
),
(
self
.
v4intf
,
self
.
v4intf2
),
(
self
.
v6addr
,
self
.
v6addr2
),
(
self
.
v6net
,
self
.
v6net2
),
(
self
.
v6intf
,
self
.
v6intf2
),
):
self
.
assertNotEqual
(
lhs
,
rhs
)
self
.
assertLess
(
lhs
,
rhs
)
self
.
assertLessEqual
(
lhs
,
rhs
)
self
.
assertGreater
(
rhs
,
lhs
)
self
.
assertGreaterEqual
(
rhs
,
lhs
)
self
.
assertFalse
(
lhs
>
rhs
)
self
.
assertFalse
(
rhs
<
lhs
)
self
.
assertFalse
(
lhs
>=
rhs
)
self
.
assertFalse
(
rhs
<=
lhs
)
def
test_containment
(
self
):
def
test_containment
(
self
):
for
obj
in
self
.
v4_addresses
:
for
obj
in
self
.
v4_addresses
:
self
.
assertIn
(
obj
,
self
.
v4net
)
self
.
assertIn
(
obj
,
self
.
v4net
)
...
...
Misc/ACKS
Dosyayı görüntüle @
947ff387
...
@@ -102,6 +102,7 @@ Michael R Bax
...
@@ -102,6 +102,7 @@ Michael R Bax
Anthony Baxter
Anthony Baxter
Mike Bayer
Mike Bayer
Samuel L. Bayer
Samuel L. Bayer
Tommy Beadle
Donald Beaudry
Donald Beaudry
David Beazley
David Beazley
John Beck
John Beck
...
...
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