File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ _fixture_PORT_arg = int(59595)
17
17
_fixture_mcast_GRP_arg = """ 224.0.0.1""" # only use dotted notation for multicast group addresses
18
18
_fixture_host_BIND_arg = None # Assuming this variable needs an initial value
19
19
_fixture_HEAR_args = [
20
- """ --port"" " , _fixture_PORT_arg,
21
- """ --join-mcast-groups"" " , _fixture_mcast_GRP_arg,
22
- """ --bind-group"" " , _fixture_mcast_GRP_arg
20
+ " --port" , _fixture_PORT_arg,
21
+ " --join-mcast-groups" , _fixture_mcast_GRP_arg,
22
+ " --bind-group" , _fixture_mcast_GRP_arg
23
23
]
24
24
25
25
# spawn a listening proc
@@ -36,9 +36,9 @@ def inputHandle():
36
36
if didWork:
37
37
buffer_string += result
38
38
return buffer_string
39
- def printLoopStub (func ):
40
- for i in range ( 0 , 5 ):
41
- print ( str ( func() ) )
39
+ def print_loop_stub (func ):
40
+ for _ in range (5 ):
41
+ print (str (func()) )
42
42
43
43
p = Process(
44
44
target = multicast.__main__.McastDispatch().doStep,
You can’t perform that action at this time.
0 commit comments