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
a3ec697c
Kaydet (Commit)
a3ec697c
authored
May 13, 2009
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 5994: add docstrings to marshal.
üst
e9a2b8a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
83 additions
and
5 deletions
+83
-5
NEWS
Misc/NEWS
+2
-0
marshal.c
Python/marshal.c
+81
-5
No files found.
Misc/NEWS
Dosyayı görüntüle @
a3ec697c
...
...
@@ -291,6 +291,8 @@ Core and Builtins
Library
-------
- Issue #5994: the marshal module now has docstrings.
- Issue #5977: distutils build_ext.get_outputs was not taking into account the
inplace option. Initial patch by kxroberto.
...
...
Python/marshal.c
Dosyayı görüntüle @
a3ec697c
...
...
@@ -1245,6 +1245,20 @@ marshal_dump(PyObject *self, PyObject *args)
return
Py_None
;
}
PyDoc_STRVAR
(
dump_doc
,
"dump(value, file[, version])
\n
\
\n
\
Write the value on the open file. The value must be a supported type.
\n
\
The file must be an open file object such as sys.stdout or returned by
\n
\
open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b').
\n
\
\n
\
If the value has (or contains an object that has) an unsupported type, a
\n
\
ValueError exception is raised — but garbage data will also be written
\n
\
to the file. The object will not be properly read back by load()
\n
\
\n
\
New in version 2.4: The version argument indicates the data format that
\n
\
dump should use."
);
static
PyObject
*
marshal_load
(
PyObject
*
self
,
PyObject
*
f
)
{
...
...
@@ -1263,6 +1277,19 @@ marshal_load(PyObject *self, PyObject *f)
return
result
;
}
PyDoc_STRVAR
(
load_doc
,
"load(file)
\n
\
\n
\
Read one value from the open file and return it. If no valid value is
\n
\
read (e.g. because the data has a different Python version’s
\n
\
incompatible marshal format), raise EOFError, ValueError or TypeError.
\n
\
The file must be an open file object opened in binary mode ('rb' or
\n
\
'r+b').
\n
\
\n
\
Note: If an object containing an unsupported type was marshalled with
\n
\
dump(), load() will substitute None for the unmarshallable type."
);
static
PyObject
*
marshal_dumps
(
PyObject
*
self
,
PyObject
*
args
)
{
...
...
@@ -1273,6 +1300,17 @@ marshal_dumps(PyObject *self, PyObject *args)
return
PyMarshal_WriteObjectToString
(
x
,
version
);
}
PyDoc_STRVAR
(
dumps_doc
,
"dumps(value[, version])
\n
\
\n
\
Return the string that would be written to a file by dump(value, file).
\n
\
The value must be a supported type. Raise a ValueError exception if
\n
\
value has (or contains an object that has) an unsupported type.
\n
\
\n
\
New in version 2.4: The version argument indicates the data format that
\n
\
dumps should use (see below)."
);
static
PyObject
*
marshal_loads
(
PyObject
*
self
,
PyObject
*
args
)
{
...
...
@@ -1292,18 +1330,56 @@ marshal_loads(PyObject *self, PyObject *args)
return
result
;
}
PyDoc_STRVAR
(
loads_doc
,
"loads(string)
\n
\
\n
\
Convert the string to a value. If no valid value is found, raise
\n
\
EOFError, ValueError or TypeError. Extra characters in the string are
\n
\
ignored."
);
static
PyMethodDef
marshal_methods
[]
=
{
{
"dump"
,
marshal_dump
,
METH_VARARGS
},
{
"load"
,
marshal_load
,
METH_O
},
{
"dumps"
,
marshal_dumps
,
METH_VARARGS
},
{
"loads"
,
marshal_loads
,
METH_VARARGS
},
{
"dump"
,
marshal_dump
,
METH_VARARGS
,
dump_doc
},
{
"load"
,
marshal_load
,
METH_O
,
load_doc
},
{
"dumps"
,
marshal_dumps
,
METH_VARARGS
,
dumps_doc
},
{
"loads"
,
marshal_loads
,
METH_VARARGS
,
loads_doc
},
{
NULL
,
NULL
}
/* sentinel */
};
PyDoc_STRVAR
(
marshal_doc
,
"This module contains functions that can read and write Python values in
\n
\
a binary format. The format is specific to Python, but independent of
\n
\
machine architecture issues.
\n
\
\n
\
Not all Python object types are supported; in general, only objects
\n
\
whose value is independent from a particular invocation of Python can be
\n
\
written and read by this module. The following types are supported:
\n
\
None, integers, long integers, floating point numbers, strings, Unicode
\n
\
objects, tuples, lists, sets, dictionaries, and code objects, where it
\n
\
should be understood that tuples, lists and dictionaries are only
\n
\
supported as long as the values contained therein are themselves
\n
\
supported; and recursive lists and dictionaries should not be written
\n
\
(they will cause infinite loops).
\n
\
\n
\
Variables:
\n
\
\n
\
version -- indicates the format that the module uses. Version 0 is the
\n
\
historical format, version 1 (added in Python 2.4) shares interned
\n
\
strings and version 2 (added in Python 2.5) uses a binary format for
\n
\
floating point numbers. (New in version 2.4)
\n
\
\n
\
Functions:
\n
\
\n
\
dump() -- write value to a file
\n
\
load() -- read value from a file
\n
\
dumps() -- write value to a string
\n
\
loads() -- read value from a string"
);
PyMODINIT_FUNC
PyMarshal_Init
(
void
)
{
PyObject
*
mod
=
Py_InitModule
(
"marshal"
,
marshal_methods
);
PyObject
*
mod
=
Py_InitModule3
(
"marshal"
,
marshal_methods
,
marshal_doc
);
if
(
mod
==
NULL
)
return
;
PyModule_AddIntConstant
(
mod
,
"version"
,
Py_MARSHAL_VERSION
);
...
...
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