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
42182eba
Kaydet (Commit)
42182eba
authored
Mar 09, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF 698520: Iterator for urllib.URLOpener
Contributed by Brett Cannon.
üst
e9e20a98
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
liburllib.tex
Doc/lib/liburllib.tex
+2
-1
urllib.py
Lib/urllib.py
+4
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/lib/liburllib.tex
Dosyayı görüntüle @
42182eba
...
...
@@ -27,7 +27,8 @@ if the server returns an error code, the \exception{IOError} exception
is raised. If all went well, a file-like object is returned. This
supports the following methods:
\method
{
read()
}
,
\method
{
readline()
}
,
\method
{
readlines()
}
,
\method
{
fileno()
}
,
\method
{
close()
}
,
\method
{
info()
}
and
\method
{
geturl()
}
.
\method
{
info()
}
and
\method
{
geturl()
}
. It also has proper support for
the iterator protocol.
Except for the
\method
{
info()
}
and
\method
{
geturl()
}
methods,
these methods have the same interface as for
...
...
Lib/urllib.py
Dosyayı görüntüle @
42182eba
...
...
@@ -780,6 +780,10 @@ class addbase:
self
.
readline
=
self
.
fp
.
readline
if
hasattr
(
self
.
fp
,
"readlines"
):
self
.
readlines
=
self
.
fp
.
readlines
if
hasattr
(
self
.
fp
,
"fileno"
):
self
.
fileno
=
self
.
fp
.
fileno
if
hasattr
(
self
.
fp
,
"__iter__"
):
self
.
__iter__
=
self
.
fp
.
__iter__
if
hasattr
(
self
.
fp
,
"next"
):
self
.
next
=
self
.
fp
.
next
def
__repr__
(
self
):
return
'<
%
s at
%
s whose fp =
%
s>'
%
(
self
.
__class__
.
__name__
,
...
...
Misc/NEWS
Dosyayı görüntüle @
42182eba
...
...
@@ -46,6 +46,9 @@ Extension modules
Library
-------
- The urllib module now offers support for the iterator protocol.
SF patch 698520 contributed by Brett Cannon.
- New module timeit provides a simple framework for timing the
execution speed of expressions and statements.
...
...
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