BIND 10 trac2018, updated. fd3ab0734141e732049a939e11cc7353fdce98c0 [2018] parentheses around | operation

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Jun 7 07:43:45 UTC 2012


The branch, trac2018 has been updated
       via  fd3ab0734141e732049a939e11cc7353fdce98c0 (commit)
      from  1592922fd2504f5172fd40e29514372b965e926d (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 fd3ab0734141e732049a939e11cc7353fdce98c0
Author: Jelte Jansen <jelte at isc.org>
Date:   Thu Jun 7 09:43:23 2012 +0200

    [2018] parentheses around | operation

-----------------------------------------------------------------------

Summary of changes:
 src/lib/python/isc/xfrin/diff.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/xfrin/diff.py b/src/lib/python/isc/xfrin/diff.py
index 4af7e40..2d6d43d 100644
--- a/src/lib/python/isc/xfrin/diff.py
+++ b/src/lib/python/isc/xfrin/diff.py
@@ -379,7 +379,7 @@ class Diff:
             return (self.__deletions, self.__additions)
 
     def find(self, name, rrtype,
-             options=ZoneFinder.NO_WILDCARD | ZoneFinder.FIND_GLUE_OK):
+             options=(ZoneFinder.NO_WILDCARD | ZoneFinder.FIND_GLUE_OK)):
         """
         Calls the find() method in the ZoneFinder associated with this
         Diff's ZoneUpdater, i.e. the find() on the zone as it was on the
@@ -394,7 +394,7 @@ class Diff:
         return self.__updater.find(name, rrtype, options)
 
     def find_all(self, name,
-                 options=ZoneFinder.NO_WILDCARD | ZoneFinder.FIND_GLUE_OK):
+                 options=(ZoneFinder.NO_WILDCARD | ZoneFinder.FIND_GLUE_OK)):
         """
         Calls the find() method in the ZoneFinder associated with this
         Diff's ZoneUpdater, i.e. the find_all() on the zone as it was on the



More information about the bind10-changes mailing list