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
fc93bd46
Commit
fc93bd46
authored
Jun 19, 2018
by
Bup
Committed by
Xiang Zhang
Jun 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)
parent
698865dc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
38 deletions
+38
-38
Objects/unicodeobject.c
Objects/unicodeobject.c
+38
-38
No files found.
Objects/unicodeobject.c
View file @
fc93bd46
...
@@ -15062,7 +15062,7 @@ static PyObject *unicode_iter(PyObject *seq);
...
@@ -15062,7 +15062,7 @@ static PyObject *unicode_iter(PyObject *seq);
PyTypeObject
PyUnicode_Type
=
{
PyTypeObject
PyUnicode_Type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"str"
,
/* tp_name */
"str"
,
/* tp_name */
sizeof
(
PyUnicodeObject
),
/* tp_
size */
sizeof
(
PyUnicodeObject
),
/* tp_basic
size */
0
,
/* tp_itemsize */
0
,
/* tp_itemsize */
/* Slots */
/* Slots */
(
destructor
)
unicode_dealloc
,
/* tp_dealloc */
(
destructor
)
unicode_dealloc
,
/* tp_dealloc */
...
...
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