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
1582a3ab
Commit
1582a3ab
authored
Aug 16, 2000
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated comment
parent
080bb2a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Include/objimpl.h
Include/objimpl.h
+1
-1
Objects/object.c
Objects/object.c
+1
-1
No files found.
Include/objimpl.h
View file @
1582a3ab
...
...
@@ -166,7 +166,7 @@ extern DL_IMPORT(void) _PyObject_Del(PyObject *);
( (type *) _PyObject_NewVar((typeobj), (n)) )
#define PyObject_Del(op) _PyObject_Del((PyObject *)(op))
/* Macros trading binary compatibility for speed. See also
mymalloc
.h.
/* Macros trading binary compatibility for speed. See also
pymem
.h.
Note that these macros expect non-NULL object pointers.*/
#define PyObject_INIT(op, typeobj) \
( (op)->ob_type = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
...
...
Objects/object.c
View file @
1582a3ab
...
...
@@ -1004,7 +1004,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
int
(
*
_Py_abstract_hack
)(
PyObject
*
)
=
&
PyObject_Size
;
/* Python's malloc wrappers (see
mymalloc
.h) */
/* Python's malloc wrappers (see
pymem
.h) */
void
*
PyMem_Malloc
(
size_t
nbytes
)
...
...
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