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
24182a3a
Commit
24182a3a
authored
May 05, 2016
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restored parameter name "self" since gdb needs exact specific parameter names.
parent
584e8aed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Python/bltinmodule.c
Python/bltinmodule.c
+3
-2
No files found.
Python/bltinmodule.c
View file @
24182a3a
...
...
@@ -1078,6 +1078,7 @@ builtin_hasattr_impl(PyModuleDef *module, PyObject *obj, PyObject *name)
/*[clinic input]
id as builtin_id
self: self(type="PyModuleDef *")
obj as v: object
/
...
...
@@ -1088,8 +1089,8 @@ This is guaranteed to be unique among simultaneously existing objects.
[clinic start generated code]*/
static
PyObject
*
builtin_id
(
PyModuleDef
*
module
,
PyObject
*
v
)
/*[clinic end generated code: output=
63635e497e09c2f7 input=57fb4a9aaff9638
4]*/
builtin_id
(
PyModuleDef
*
self
,
PyObject
*
v
)
/*[clinic end generated code: output=
0aa640785f697f65 input=5a534136419631f
4]*/
{
return
PyLong_FromVoidPtr
(
v
);
}
...
...
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