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
d39206a7
Kaydet (Commit)
d39206a7
authored
Eyl 07, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use c++ style comments
üst
b6c34587
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
namespaceobject.c
Objects/namespaceobject.c
+4
-4
No files found.
Objects/namespaceobject.c
Dosyayı görüntüle @
d39206a7
/
* namespace object implementation */
/
/ namespace object implementation
#include "Python.h"
#include "structmember.h"
...
...
@@ -16,7 +16,7 @@ static PyMemberDef namespace_members[] = {
};
/
* Methods */
/
/ Methods
static
PyObject
*
namespace_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
...
...
@@ -40,7 +40,7 @@ namespace_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
static
int
namespace_init
(
_PyNamespaceObject
*
ns
,
PyObject
*
args
,
PyObject
*
kwds
)
{
/
* ignore args if it's NULL or empty */
/
/ ignore args if it's NULL or empty
if
(
args
!=
NULL
)
{
Py_ssize_t
argcount
=
PyObject_Size
(
args
);
if
(
argcount
<
0
)
...
...
@@ -191,7 +191,7 @@ namespace_reduce(_PyNamespaceObject *ns)
static
PyMethodDef
namespace_methods
[]
=
{
{
"__reduce__"
,
(
PyCFunction
)
namespace_reduce
,
METH_NOARGS
,
namespace_reduce__doc__
},
{
NULL
,
NULL
}
/
* sentinel */
{
NULL
,
NULL
}
/
/ sentinel
};
...
...
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