Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
926a9b1b
Commit
926a9b1b
authored
Jun 11, 2013
by
Paul Selkirk
Browse files
[2908] align comments in PyTypeObject
parent
27dcf35f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/python/isc/datasrc/zonetable_accessor_python.cc
View file @
926a9b1b
...
@@ -110,9 +110,9 @@ namespace python {
...
@@ -110,9 +110,9 @@ namespace python {
PyTypeObject
zonetableaccessor_type
=
{
PyTypeObject
zonetableaccessor_type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
PyVarObject_HEAD_INIT
(
NULL
,
0
)
"datasrc.ZoneTableAccessor"
,
"datasrc.ZoneTableAccessor"
,
sizeof
(
s_ZoneTableAccessor
),
// tp_basicsize
sizeof
(
s_ZoneTableAccessor
),
// tp_basicsize
0
,
// tp_itemsize
0
,
// tp_itemsize
ZoneTableAccessor_destroy
,
// tp_dealloc
ZoneTableAccessor_destroy
,
// tp_dealloc
NULL
,
// tp_print
NULL
,
// tp_print
NULL
,
// tp_getattr
NULL
,
// tp_getattr
NULL
,
// tp_setattr
NULL
,
// tp_setattr
...
@@ -128,7 +128,7 @@ PyTypeObject zonetableaccessor_type = {
...
@@ -128,7 +128,7 @@ PyTypeObject zonetableaccessor_type = {
NULL
,
// tp_setattro
NULL
,
// tp_setattro
NULL
,
// tp_as_buffer
NULL
,
// tp_as_buffer
Py_TPFLAGS_DEFAULT
,
// tp_flags
Py_TPFLAGS_DEFAULT
,
// tp_flags
ZoneTableAccessor_doc
,
ZoneTableAccessor_doc
,
// tp_doc
NULL
,
// tp_traverse
NULL
,
// tp_traverse
NULL
,
// tp_clear
NULL
,
// tp_clear
NULL
,
// tp_richcompare
NULL
,
// tp_richcompare
...
...
src/lib/python/isc/datasrc/zonetable_iterator_python.cc
View file @
926a9b1b
...
@@ -146,7 +146,7 @@ PyTypeObject zonetableiterator_type = {
...
@@ -146,7 +146,7 @@ PyTypeObject zonetableiterator_type = {
NULL
,
// tp_setattro
NULL
,
// tp_setattro
NULL
,
// tp_as_buffer
NULL
,
// tp_as_buffer
Py_TPFLAGS_DEFAULT
,
// tp_flags
Py_TPFLAGS_DEFAULT
,
// tp_flags
ZoneTableIterator_doc
,
ZoneTableIterator_doc
,
// tp_doc
NULL
,
// tp_traverse
NULL
,
// tp_traverse
NULL
,
// tp_clear
NULL
,
// tp_clear
NULL
,
// tp_richcompare
NULL
,
// tp_richcompare
...
...
Write
Preview
Supports
Markdown
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