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
c07422c1
Kaydet (Commit)
c07422c1
authored
Şub 11, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Splitted the WFILE structure to WFILE and RFILE.
üst
c1efe5f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
marshal.c
Python/marshal.c
+11
-6
No files found.
Python/marshal.c
Dosyayı görüntüle @
c07422c1
...
...
@@ -65,15 +65,10 @@ typedef struct {
FILE
*
fp
;
int
error
;
/* see WFERR_* values */
int
depth
;
/* If fp == NULL, the following are valid: */
PyObject
*
readable
;
/* Stream-like object being read from */
PyObject
*
str
;
PyObject
*
current_filename
;
char
*
ptr
;
char
*
end
;
char
*
buf
;
Py_ssize_t
buf_size
;
PyObject
*
refs
;
/* dict on marshal, list on unmarshal */
_Py_hashtable_t
*
hashtable
;
int
version
;
}
WFILE
;
...
...
@@ -636,7 +631,17 @@ PyMarshal_WriteObjectToFile(PyObject *x, FILE *fp, int version)
w_flush
(
&
wf
);
}
typedef
WFILE
RFILE
;
/* Same struct with different invariants */
typedef
struct
{
FILE
*
fp
;
int
depth
;
PyObject
*
readable
;
/* Stream-like object being read from */
PyObject
*
current_filename
;
char
*
ptr
;
char
*
end
;
char
*
buf
;
Py_ssize_t
buf_size
;
PyObject
*
refs
;
/* a list */
}
RFILE
;
static
char
*
r_string
(
Py_ssize_t
n
,
RFILE
*
p
)
...
...
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