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
ede77f53
Kaydet (Commit)
ede77f53
authored
Tem 03, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #825417: Fix timeout processing in expect,
read_until. Will backport to 2.4.
üst
4548239e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
telnetlib.py
Lib/telnetlib.py
+15
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/telnetlib.py
Dosyayı görüntüle @
ede77f53
...
...
@@ -311,6 +311,8 @@ class Telnet:
s_args
=
s_reply
if
timeout
is
not
None
:
s_args
=
s_args
+
(
timeout
,)
from
time
import
time
time_start
=
time
()
while
not
self
.
eof
and
select
.
select
(
*
s_args
)
==
s_reply
:
i
=
max
(
0
,
len
(
self
.
cookedq
)
-
n
)
self
.
fill_rawq
()
...
...
@@ -321,6 +323,11 @@ class Telnet:
buf
=
self
.
cookedq
[:
i
]
self
.
cookedq
=
self
.
cookedq
[
i
:]
return
buf
if
timeout
is
not
None
:
elapsed
=
time
()
-
time_start
if
elapsed
>=
timeout
:
break
s_args
=
s_reply
+
(
timeout
-
elapsed
,)
return
self
.
read_very_lazy
()
def
read_all
(
self
):
...
...
@@ -601,6 +608,9 @@ class Telnet:
if
not
hasattr
(
list
[
i
],
"search"
):
if
not
re
:
import
re
list
[
i
]
=
re
.
compile
(
list
[
i
])
if
timeout
is
not
None
:
from
time
import
time
time_start
=
time
()
while
1
:
self
.
process_rawq
()
for
i
in
indices
:
...
...
@@ -613,7 +623,11 @@ class Telnet:
if
self
.
eof
:
break
if
timeout
is
not
None
:
r
,
w
,
x
=
select
.
select
([
self
.
fileno
()],
[],
[],
timeout
)
elapsed
=
time
()
-
time_start
if
elapsed
>=
timeout
:
break
s_args
=
([
self
.
fileno
()],
[],
[],
timeout
-
elapsed
)
r
,
w
,
x
=
select
.
select
(
*
s_args
)
if
not
r
:
break
self
.
fill_rawq
()
...
...
Misc/NEWS
Dosyayı görüntüle @
ede77f53
...
...
@@ -22,6 +22,9 @@ Core and builtins
Library
-------
- Bug #822974: Honor timeout in telnetlib.{expect,read_until}
even if some data are received.
- Bug #1267547: Put proper recursive setup.py call into the
spec file generated by bdist_rpm.
...
...
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