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
27396a18
Kaydet (Commit)
27396a18
authored
Tem 08, 2012
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 14814: Remove dead function (noticed by Serhiy Storchaka)
üst
6803855e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
ipaddress.py
Lib/ipaddress.py
+0
-18
test_ipaddress.py
Lib/test/test_ipaddress.py
+0
-1
No files found.
Lib/ipaddress.py
Dosyayı görüntüle @
27396a18
...
...
@@ -183,24 +183,6 @@ def _find_address_range(addresses):
return
(
first
,
last
)
def
_get_prefix_length
(
number1
,
number2
,
bits
):
"""Get the number of leading bits that are same for two numbers.
Args:
number1: an integer.
number2: another integer.
bits: the maximum number of bits to compare.
Returns:
The number of leading bits that are the same for two numbers.
"""
for
i
in
range
(
bits
):
if
number1
>>
i
==
number2
>>
i
:
return
bits
-
i
return
0
def
_count_righthand_zero_bits
(
number
,
bits
):
"""Count the number of zero bits on the right hand side.
...
...
Lib/test/test_ipaddress.py
Dosyayı görüntüle @
27396a18
...
...
@@ -551,7 +551,6 @@ class IpaddrUnitTest(unittest.TestCase):
ipaddress
.
IPv4Address
(
'10.10.10.10'
),
ipaddress
.
IPv4Address
(
'10.10.10.12'
)])
self
.
assertEqual
(
first
,
last
)
self
.
assertEqual
(
0
,
ipaddress
.
_get_prefix_length
(
2
**
32
,
0
,
32
))
self
.
assertEqual
(
128
,
ipaddress
.
_count_righthand_zero_bits
(
0
,
128
))
self
.
assertEqual
(
"IPv4Network('1.2.3.0/24')"
,
repr
(
self
.
ipv4_network
))
self
.
assertEqual
(
'0x1020318'
,
hex
(
self
.
ipv4_network
))
...
...
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