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
a3a93ae7
Kaydet (Commit)
a3a93ae7
authored
Ock 20, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1396471: Document that Windows' ftell() can return invalid
values for text files with UNIX-style line endings.
üst
b709c2ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
libstdtypes.tex
Doc/lib/libstdtypes.tex
+5
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/lib/libstdtypes.tex
Dosyayı görüntüle @
a3a93ae7
...
...
@@ -625,7 +625,7 @@ characters is assumed.
\begin{methoddesc}
[string]
{
find
}{
sub
\optional
{
, start
\optional
{
, end
}}}
Return the lowest index in the string where substring
\var
{
sub
}
is
found, such that
\var
{
sub
}
is contained in the range [
\var
{
start
}
,
\var
{
end
}
)
. Optional arguments
\var
{
start
}
and
\var
{
end
}
are
\var
{
end
}
]
. Optional arguments
\var
{
start
}
and
\var
{
end
}
are
interpreted as in slice notation. Return
\code
{
-1
}
if
\var
{
sub
}
is
not found.
\end{methoddesc}
...
...
@@ -1598,6 +1598,10 @@ flush the read-ahead buffer.
\begin{methoddesc}
[file]
{
tell
}{}
Return the file's current position, like
\code
{
stdio
}
's
\cfunction
{
ftell()
}
.
\note
{
On Windows,
\method
{
tell()
}
can return illegal values (after an
\cfunction
{
fgets()
}
) when reading files with
\UNIX
{}
-style line-endings.
Use binary mode (
\code
{
'rb'
}
) to circumvent this problem.
}
\end{methoddesc}
\begin{methoddesc}
[file]
{
truncate
}{
\optional
{
size
}}
...
...
Misc/NEWS
Dosyayı görüntüle @
a3a93ae7
...
...
@@ -727,6 +727,9 @@ Tests
Documentation
-------------
- Bug #1396471: Document that Windows'
ftell
()
can
return
invalid
values
for
text
files
with
UNIX
-
style
line
endings
.
-
Bug
#
1274828
:
Document
os
.
path
.
splitunc
().
-
Bug
#
1190204
:
Clarify
which
directories
are
searched
by
site
.
py
.
...
...
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