Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bfef18ca
Commit
bfef18ca
authored
May 23, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PyType_GenericAlloc is inherited from object.
parent
c26ff41d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
Modules/_randommodule.c
Modules/_randommodule.c
+1
-1
Modules/itertoolsmodule.c
Modules/itertoolsmodule.c
+12
-12
No files found.
Modules/_randommodule.c
View file @
bfef18ca
...
@@ -509,7 +509,7 @@ static PyTypeObject Random_Type = {
...
@@ -509,7 +509,7 @@ static PyTypeObject Random_Type = {
0
,
/*tp_descr_set*/
0
,
/*tp_descr_set*/
0
,
/*tp_dictoffset*/
0
,
/*tp_dictoffset*/
0
,
/*tp_init*/
0
,
/*tp_init*/
PyType_GenericAlloc
,
/*tp_alloc*/
0
,
/*tp_alloc*/
random_new
,
/*tp_new*/
random_new
,
/*tp_new*/
_PyObject_Del
,
/*tp_free*/
_PyObject_Del
,
/*tp_free*/
0
,
/*tp_is_gc*/
0
,
/*tp_is_gc*/
...
...
Modules/itertoolsmodule.c
View file @
bfef18ca
...
@@ -151,7 +151,7 @@ PyTypeObject cycle_type = {
...
@@ -151,7 +151,7 @@ PyTypeObject cycle_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
cycle_new
,
/* tp_new */
cycle_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -300,7 +300,7 @@ PyTypeObject dropwhile_type = {
...
@@ -300,7 +300,7 @@ PyTypeObject dropwhile_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
dropwhile_new
,
/* tp_new */
dropwhile_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -448,7 +448,7 @@ PyTypeObject takewhile_type = {
...
@@ -448,7 +448,7 @@ PyTypeObject takewhile_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
takewhile_new
,
/* tp_new */
takewhile_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -638,7 +638,7 @@ PyTypeObject islice_type = {
...
@@ -638,7 +638,7 @@ PyTypeObject islice_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
islice_new
,
/* tp_new */
islice_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -777,7 +777,7 @@ PyTypeObject starmap_type = {
...
@@ -777,7 +777,7 @@ PyTypeObject starmap_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
starmap_new
,
/* tp_new */
starmap_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -964,7 +964,7 @@ PyTypeObject imap_type = {
...
@@ -964,7 +964,7 @@ PyTypeObject imap_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
imap_new
,
/* tp_new */
imap_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -1099,7 +1099,7 @@ PyTypeObject chain_type = {
...
@@ -1099,7 +1099,7 @@ PyTypeObject chain_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
chain_new
,
/* tp_new */
chain_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -1248,7 +1248,7 @@ PyTypeObject ifilter_type = {
...
@@ -1248,7 +1248,7 @@ PyTypeObject ifilter_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
ifilter_new
,
/* tp_new */
ifilter_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -1397,7 +1397,7 @@ PyTypeObject ifilterfalse_type = {
...
@@ -1397,7 +1397,7 @@ PyTypeObject ifilterfalse_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
ifilterfalse_new
,
/* tp_new */
ifilterfalse_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -1481,7 +1481,7 @@ PyTypeObject count_type = {
...
@@ -1481,7 +1481,7 @@ PyTypeObject count_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
count_new
,
/* tp_new */
count_new
,
/* tp_new */
};
};
...
@@ -1665,7 +1665,7 @@ PyTypeObject izip_type = {
...
@@ -1665,7 +1665,7 @@ PyTypeObject izip_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
izip_new
,
/* tp_new */
izip_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
@@ -1775,7 +1775,7 @@ PyTypeObject repeat_type = {
...
@@ -1775,7 +1775,7 @@ PyTypeObject repeat_type = {
0
,
/* tp_descr_set */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
0
,
/* tp_alloc */
repeat_new
,
/* tp_new */
repeat_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
PyObject_GC_Del
,
/* tp_free */
};
};
...
...
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