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
e1682a80
Kaydet (Commit)
e1682a80
authored
Nis 21, 2002
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Py_UniversalNewlineFread(): small speed boost on non-Windows boxes.
üst
0eca65c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
fileobject.c
Objects/fileobject.c
+3
-3
No files found.
Objects/fileobject.c
Dosyayı görüntüle @
e1682a80
...
...
@@ -2052,19 +2052,20 @@ Py_UniversalNewlineFread(char *buf, size_t n,
nread
=
fread
(
dst
,
1
,
n
,
stream
);
assert
(
nread
<=
n
);
shortread
=
nread
!=
n
;
/* true iff EOF or error */
n
-=
nread
;
/* assuming 1 byte out for each in; will adjust */
shortread
=
n
!=
0
;
/* true iff EOF or error */
while
(
nread
--
)
{
char
c
=
*
src
++
;
if
(
c
==
'\r'
)
{
/* Save as LF and set flag to skip next LF. */
*
dst
++
=
'\n'
;
--
n
;
skipnextlf
=
1
;
}
else
if
(
skipnextlf
&&
c
==
'\n'
)
{
/* Skip LF, and remember we saw CR LF. */
skipnextlf
=
0
;
newlinetypes
|=
NEWLINE_CRLF
;
++
n
;
}
else
{
/* Normal char to be stored in buffer. Also
...
...
@@ -2076,7 +2077,6 @@ Py_UniversalNewlineFread(char *buf, size_t n,
else
if
(
skipnextlf
)
newlinetypes
|=
NEWLINE_CR
;
*
dst
++
=
c
;
--
n
;
skipnextlf
=
0
;
}
}
...
...
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