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
cb1c4c8c
Kaydet (Commit)
cb1c4c8c
authored
Ara 13, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
üst
2748bc73
3ad2d709
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
test_poll.py
Lib/test/test_poll.py
+0
-4
NEWS
Misc/NEWS
+2
-0
selectmodule.c
Modules/selectmodule.c
+2
-3
No files found.
Lib/test/test_poll.py
Dosyayı görüntüle @
cb1c4c8c
...
...
@@ -163,10 +163,6 @@ class PollTests(unittest.TestCase):
pollster
=
select
.
poll
()
# Issue 15989
self
.
assertRaises
(
OverflowError
,
pollster
.
register
,
0
,
_testcapi
.
SHRT_MAX
+
1
)
self
.
assertRaises
(
OverflowError
,
pollster
.
register
,
0
,
_testcapi
.
USHRT_MAX
+
1
)
self
.
assertRaises
(
OverflowError
,
pollster
.
poll
,
_testcapi
.
INT_MAX
+
1
)
self
.
assertRaises
(
OverflowError
,
pollster
.
poll
,
_testcapi
.
UINT_MAX
+
1
)
...
...
Misc/NEWS
Dosyayı görüntüle @
cb1c4c8c
...
...
@@ -37,6 +37,8 @@ Core and Builtins
Library
-------
- Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
- Issue #19063: if a Charset'
s
body_encoding
was
set
to
None
,
the
email
package
would
generate
a
message
claiming
the
Content
-
Transfer
-
Encoding
was
7
bit
,
and
produce
garbage
output
for
the
content
.
This
now
works
.
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
cb1c4c8c
...
...
@@ -375,11 +375,10 @@ static PyObject *
poll_register
(
pollObject
*
self
,
PyObject
*
args
)
{
PyObject
*
o
,
*
key
,
*
value
;
int
fd
;
short
events
=
POLLIN
|
POLLPRI
|
POLLOUT
;
int
fd
,
events
=
POLLIN
|
POLLPRI
|
POLLOUT
;
int
err
;
if
(
!
PyArg_ParseTuple
(
args
,
"O|
h
:register"
,
&
o
,
&
events
))
{
if
(
!
PyArg_ParseTuple
(
args
,
"O|
i
:register"
,
&
o
,
&
events
))
{
return
NULL
;
}
...
...
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