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
e9992292
Kaydet (Commit)
e9992292
authored
Eki 27, 2012
tarafından
Trent Nelson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16274: Fix test_asyncore on Solaris.
üst
e793f44a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
test_asyncore.py
Lib/test/test_asyncore.py
+3
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_asyncore.py
Dosyayı görüntüle @
e9992292
...
@@ -484,8 +484,9 @@ class TCPServer(asyncore.dispatcher):
...
@@ -484,8 +484,9 @@ class TCPServer(asyncore.dispatcher):
return
self
.
socket
.
getsockname
()[:
2
]
return
self
.
socket
.
getsockname
()[:
2
]
def
handle_accept
(
self
):
def
handle_accept
(
self
):
sock
,
addr
=
self
.
accept
()
pair
=
self
.
accept
()
self
.
handler
(
sock
)
if
pair
is
not
None
:
self
.
handler
(
pair
[
0
])
def
handle_error
(
self
):
def
handle_error
(
self
):
raise
raise
...
...
Misc/NEWS
Dosyayı görüntüle @
e9992292
...
@@ -435,6 +435,8 @@ Extension Modules
...
@@ -435,6 +435,8 @@ Extension Modules
Tests
Tests
-----
-----
-
Issue
#
16274
:
Fix
test_asyncore
on
Solaris
.
Patch
by
Giampaolo
Rodola
'.
- Issue #15040: Close files in mailbox tests for PyPy compatibility.
- Issue #15040: Close files in mailbox tests for PyPy compatibility.
Original patch by Matti Picus.
Original patch by Matti Picus.
...
...
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