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
cbb0ae4a
Kaydet (Commit)
cbb0ae4a
authored
Tem 28, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa.
üst
8182b717
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
1 deletion
+24
-1
asyncore.py
Lib/asyncore.py
+8
-0
test_asyncore.py
Lib/test/test_asyncore.py
+13
-0
ACKS
Misc/ACKS
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/asyncore.py
Dosyayı görüntüle @
cbb0ae4a
...
...
@@ -607,6 +607,14 @@ if os.name == 'posix':
def
send
(
self
,
*
args
):
return
os
.
write
(
self
.
fd
,
*
args
)
def
getsockopt
(
self
,
level
,
optname
,
buflen
=
None
):
if
(
level
==
socket
.
SOL_SOCKET
and
optname
==
socket
.
SO_ERROR
and
not
buflen
):
return
0
raise
NotImplementedError
(
"Only asyncore specific behaviour "
"implemented."
)
read
=
recv
write
=
send
...
...
Lib/test/test_asyncore.py
Dosyayı görüntüle @
cbb0ae4a
...
...
@@ -428,6 +428,19 @@ class FileWrapperTest(unittest.TestCase):
w
.
close
()
self
.
assertEqual
(
open
(
TESTFN
,
'rb'
)
.
read
(),
self
.
d
+
d1
+
d2
)
@unittest.skipUnless
(
hasattr
(
asyncore
,
'file_dispatcher'
),
'asyncore.file_dispatcher required'
)
def
test_dispatcher
(
self
):
fd
=
os
.
open
(
TESTFN
,
os
.
O_RDONLY
)
data
=
[]
class
FileDispatcher
(
asyncore
.
file_dispatcher
):
def
handle_read
(
self
):
data
.
append
(
self
.
recv
(
29
))
s
=
FileDispatcher
(
fd
)
os
.
close
(
fd
)
asyncore
.
loop
(
timeout
=
0.01
,
use_poll
=
True
,
count
=
2
)
self
.
assertEqual
(
b
""
.
join
(
data
),
self
.
d
)
class
BaseTestHandler
(
asyncore
.
dispatcher
):
...
...
Misc/ACKS
Dosyayı görüntüle @
cbb0ae4a
...
...
@@ -448,8 +448,8 @@ Andrew Kuchling
Vladimir Kushnir
Cameron Laird
Torsten Landschoff
Tino Lange
Łukasz Langa
Tino Lange
Andrew Langmead
Detlef Lannert
Soren Larsen
...
...
Misc/NEWS
Dosyayı görüntüle @
cbb0ae4a
...
...
@@ -475,6 +475,8 @@ C-API
Library
-------
- Issue #9354: Provide getsockopt() in asyncore's file_wrapper.
- Issue #8966: ctypes: Remove implicit bytes-unicode conversion.
- Issue #9378: python -m pickle <pickle file> will now load and
...
...
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