BIND 10 trac2379_2, updated. 6bd0c1d9f2f14339f83ce9fb1882f42ae23036a1 [2379] style fix: combine short lines; indentation
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Dec 13 20:33:47 UTC 2012
The branch, trac2379_2 has been updated
via 6bd0c1d9f2f14339f83ce9fb1882f42ae23036a1 (commit)
from 65ce062ac130500177a0adc4100289b8879c601c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6bd0c1d9f2f14339f83ce9fb1882f42ae23036a1
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Dec 13 12:33:45 2012 -0800
[2379] style fix: combine short lines; indentation
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/datasrc/datasrc.cc | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/datasrc.cc b/src/lib/python/isc/datasrc/datasrc.cc
index b59a6b9..37c9baa 100644
--- a/src/lib/python/isc/datasrc/datasrc.cc
+++ b/src/lib/python/isc/datasrc/datasrc.cc
@@ -190,8 +190,7 @@ initModulePart_ZoneLoader(PyObject* mod) {
return (false);
}
void* p = &zone_loader_type;
- if (PyModule_AddObject(mod, "ZoneLoader",
- static_cast<PyObject*>(p)) < 0) {
+ if (PyModule_AddObject(mod, "ZoneLoader", static_cast<PyObject*>(p)) < 0) {
return (false);
}
Py_INCREF(&zone_loader_type);
@@ -286,8 +285,8 @@ PyInit_datasrc(void) {
PyObjectContainer(po_DataSourceError).installToModule(mod, "Error");
po_MasterFileError = PyErr_NewException("isc.datasrc.MasterFileError",
po_DataSourceError, NULL);
- PyObjectContainer(po_MasterFileError).installToModule(mod,
- "MasterFileError");
+ PyObjectContainer(po_MasterFileError).
+ installToModule(mod, "MasterFileError");
po_OutOfZone = PyErr_NewException("isc.datasrc.OutOfZone", NULL, NULL);
PyObjectContainer(po_OutOfZone).installToModule(mod, "OutOfZone");
po_NotImplemented = PyErr_NewException("isc.datasrc.NotImplemented",
More information about the bind10-changes
mailing list