[svn] commit: r2070 - /trunk/src/bin/xfrin/xfrin.py.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jun 3 00:19:36 UTC 2010
Author: jinmei
Date: Thu Jun 3 00:19:35 2010
New Revision: 2070
Log:
pythonic style fix:
- Don't use spaces around the '=' sign when used to indicate a
keyword argument or a default parameter value.
Modified:
trunk/src/bin/xfrin/xfrin.py.in
Modified: trunk/src/bin/xfrin/xfrin.py.in
==============================================================================
--- trunk/src/bin/xfrin/xfrin.py.in (original)
+++ trunk/src/bin/xfrin/xfrin.py.in Thu Jun 3 00:19:35 2010
@@ -135,7 +135,7 @@
This method is a trivial wrapper for asyncore.loop(). It's extracted from
_get_request_response so that we can test the rest of the code without
involving actual communication with a remote server.'''
- asyncore.loop(self._idle_timeout, map = self._sock_map, count = 1)
+ asyncore.loop(self._idle_timeout, map=self._sock_map, count=1)
def _get_request_response(self, size):
recv_size = 0
More information about the bind10-changes
mailing list