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
d8b995f5
Kaydet (Commit)
d8b995f5
authored
Agu 06, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make readahead functions static
üst
22b1387c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
fileobject.c
Objects/fileobject.c
+8
-5
No files found.
Objects/fileobject.c
Dosyayı görüntüle @
d8b995f5
...
...
@@ -271,7 +271,7 @@ err_closed(void)
return
NULL
;
}
void
drop_readahead
(
PyFileObject
*
);
static
void
drop_readahead
(
PyFileObject
*
);
/* Methods */
...
...
@@ -1608,7 +1608,7 @@ static PyGetSetDef file_getsetlist[] = {
{
0
},
};
void
static
void
drop_readahead
(
PyFileObject
*
f
)
{
if
(
f
->
f_buf
!=
NULL
)
{
...
...
@@ -1620,7 +1620,9 @@ drop_readahead(PyFileObject *f)
/* Make sure that file has a readahead buffer with at least one byte
(unless at EOF) and no more than bufsize. Returns negative value on
error */
int
readahead
(
PyFileObject
*
f
,
int
bufsize
)
{
static
int
readahead
(
PyFileObject
*
f
,
int
bufsize
)
{
int
chunksize
;
if
(
f
->
f_buf
!=
NULL
)
{
...
...
@@ -1655,8 +1657,9 @@ int readahead(PyFileObject *f, int bufsize) {
horrified by the recursive call: maximum recursion depth is limited by
logarithmic buffer growth to about 50 even when reading a 1gb line. */
PyStringObject
*
readahead_get_line_skip
(
PyFileObject
*
f
,
int
skip
,
int
bufsize
)
{
static
PyStringObject
*
readahead_get_line_skip
(
PyFileObject
*
f
,
int
skip
,
int
bufsize
)
{
PyStringObject
*
s
;
char
*
bufptr
;
char
*
buf
;
...
...
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