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
fea0f4d5
Kaydet (Commit)
fea0f4d5
authored
May 23, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12158: Move linux_version() from test_socket to test.support
üst
25000d4d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
support.py
Lib/test/support.py
+8
-0
test_socket.py
Lib/test/test_socket.py
+3
-11
No files found.
Lib/test/support.py
Dosyayı görüntüle @
fea0f4d5
...
...
@@ -291,6 +291,14 @@ def requires(resource, msg=None):
msg
=
"Use of the `
%
s' resource not enabled"
%
resource
raise
ResourceDenied
(
msg
)
def
linux_version
():
try
:
# platform.release() is something like '2.6.33.7-desktop-2mnb'
version_string
=
platform
.
release
()
.
split
(
'-'
)[
0
]
return
tuple
(
map
(
int
,
version_string
.
split
(
'.'
)))
except
ValueError
:
return
0
,
0
,
0
HOST
=
'localhost'
def
find_unused_port
(
family
=
socket
.
AF_INET
,
socktype
=
socket
.
SOCK_STREAM
):
...
...
Lib/test/test_socket.py
Dosyayı görüntüle @
fea0f4d5
...
...
@@ -24,14 +24,6 @@ try:
except
ImportError
:
fcntl
=
False
def
linux_version
():
try
:
# platform.release() is something like '2.6.33.7-desktop-2mnb'
version_string
=
platform
.
release
()
.
split
(
'-'
)[
0
]
return
tuple
(
map
(
int
,
version_string
.
split
(
'.'
)))
except
ValueError
:
return
0
,
0
,
0
HOST
=
support
.
HOST
MSG
=
'Michael Gilfix was here
\u1234\r\n
'
.
encode
(
'utf-8'
)
## test unicode string and carriage return
...
...
@@ -1032,7 +1024,7 @@ class NonBlockingTCPTests(ThreadedTCPSocketTest):
if
hasattr
(
socket
,
"SOCK_NONBLOCK"
):
def
testInitNonBlocking
(
self
):
v
=
linux_version
()
v
=
support
.
linux_version
()
if
v
<
(
2
,
6
,
28
):
self
.
skipTest
(
"Linux kernel 2.6.28 or higher required, not
%
s"
%
"."
.
join
(
map
(
str
,
v
)))
...
...
@@ -2010,7 +2002,7 @@ class ContextManagersTest(ThreadedTCPSocketTest):
@unittest.skipUnless
(
fcntl
,
"module fcntl not available"
)
class
CloexecConstantTest
(
unittest
.
TestCase
):
def
test_SOCK_CLOEXEC
(
self
):
v
=
linux_version
()
v
=
support
.
linux_version
()
if
v
<
(
2
,
6
,
28
):
self
.
skipTest
(
"Linux kernel 2.6.28 or higher required, not
%
s"
%
"."
.
join
(
map
(
str
,
v
)))
...
...
@@ -2032,7 +2024,7 @@ class NonblockConstantTest(unittest.TestCase):
self
.
assertEqual
(
s
.
gettimeout
(),
None
)
def
test_SOCK_NONBLOCK
(
self
):
v
=
linux_version
()
v
=
support
.
linux_version
()
if
v
<
(
2
,
6
,
28
):
self
.
skipTest
(
"Linux kernel 2.6.28 or higher required, not
%
s"
%
"."
.
join
(
map
(
str
,
v
)))
...
...
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