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
0639b566
Kaydet (Commit)
0639b566
authored
Mar 04, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3080: Add PyModule_NewObject() function
üst
3a9559b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
8 deletions
+28
-8
module.rst
Doc/c-api/module.rst
+9
-1
moduleobject.h
Include/moduleobject.h
+3
-0
moduleobject.c
Objects/moduleobject.c
+16
-7
No files found.
Doc/c-api/module.rst
Dosyayı görüntüle @
0639b566
...
...
@@ -29,7 +29,7 @@ There are only a few functions special to module objects.
:c:data:`PyModule_Type`.
.. c:function:: PyObject* PyModule_New
(const char
*name)
.. c:function:: PyObject* PyModule_New
Object(PyObject
*name)
.. index::
single: __name__ (module attribute)
...
...
@@ -40,6 +40,14 @@ There are only a few functions special to module objects.
Only the module's :attr:`__doc__` and :attr:`__name__` attributes are filled in;
the caller is responsible for providing a :attr:`__file__` attribute.
.. versionadded:: 3.3
.. c:function:: PyObject* PyModule_New(const char *name)
Similar to :c:func:`PyImport_NewObject`, but the name is an UTF-8 encoded
string instead of a Unicode object.
.. c:function:: PyObject* PyModule_GetDict(PyObject *module)
...
...
Include/moduleobject.h
Dosyayı görüntüle @
0639b566
...
...
@@ -12,6 +12,9 @@ PyAPI_DATA(PyTypeObject) PyModule_Type;
#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
#define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type)
PyAPI_FUNC
(
PyObject
*
)
PyModule_NewObject
(
PyObject
*
name
);
PyAPI_FUNC
(
PyObject
*
)
PyModule_New
(
const
char
*
name
/* UTF-8 encoded string */
);
...
...
Objects/moduleobject.c
Dosyayı görüntüle @
0639b566
...
...
@@ -27,35 +27,44 @@ static PyTypeObject moduledef_type = {
PyObject
*
PyModule_New
(
const
char
*
name
)
PyModule_New
Object
(
PyObject
*
name
)
{
PyModuleObject
*
m
;
PyObject
*
nameobj
;
m
=
PyObject_GC_New
(
PyModuleObject
,
&
PyModule_Type
);
if
(
m
==
NULL
)
return
NULL
;
m
->
md_def
=
NULL
;
m
->
md_state
=
NULL
;
nameobj
=
PyUnicode_FromString
(
name
);
m
->
md_dict
=
PyDict_New
();
if
(
m
->
md_dict
==
NULL
||
nameobj
==
NULL
)
if
(
m
->
md_dict
==
NULL
)
goto
fail
;
if
(
PyDict_SetItemString
(
m
->
md_dict
,
"__name__"
,
name
obj
)
!=
0
)
if
(
PyDict_SetItemString
(
m
->
md_dict
,
"__name__"
,
name
)
!=
0
)
goto
fail
;
if
(
PyDict_SetItemString
(
m
->
md_dict
,
"__doc__"
,
Py_None
)
!=
0
)
goto
fail
;
if
(
PyDict_SetItemString
(
m
->
md_dict
,
"__package__"
,
Py_None
)
!=
0
)
goto
fail
;
Py_DECREF
(
nameobj
);
PyObject_GC_Track
(
m
);
return
(
PyObject
*
)
m
;
fail:
Py_XDECREF
(
nameobj
);
Py_DECREF
(
m
);
return
NULL
;
}
PyObject
*
PyModule_New
(
const
char
*
name
)
{
PyObject
*
nameobj
,
*
module
;
nameobj
=
PyUnicode_FromString
(
name
);
if
(
nameobj
==
NULL
)
return
NULL
;
module
=
PyModule_NewObject
(
nameobj
);
Py_DECREF
(
nameobj
);
return
module
;
}
PyObject
*
PyModule_Create2
(
struct
PyModuleDef
*
module
,
int
module_api_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