@@ -1170,10 +1170,10 @@ def analyzeline(m, case, line):
1170
1170
groupcache [groupcounter ]['args' ].append (k )
1171
1171
else :
1172
1172
errmess (
1173
- 'analyzeline: intent(callback) %s is ignored' % (k ))
1173
+ 'analyzeline: intent(callback) %s is ignored\n ' % (k ))
1174
1174
else :
1175
1175
errmess ('analyzeline: intent(callback) %s is already'
1176
- ' in argument list' % (k ))
1176
+ ' in argument list\n ' % (k ))
1177
1177
if case in ['optional' , 'required' , 'public' , 'external' , 'private' , 'intrinsic' ]:
1178
1178
ap = case
1179
1179
if 'attrspec' in edecl [k ]:
@@ -1868,11 +1868,11 @@ def get_useparameters(block, param_map=None):
1868
1868
continue
1869
1869
# XXX: apply mapping
1870
1870
if mapping :
1871
- errmess ('get_useparameters: mapping for %s not impl.' % (mapping ))
1871
+ errmess ('get_useparameters: mapping for %s not impl.\n ' % (mapping ))
1872
1872
for k , v in list (params .items ()):
1873
1873
if k in param_map :
1874
1874
outmess ('get_useparameters: overriding parameter %s with'
1875
- ' value from module %s' % (repr (k ), repr (usename )))
1875
+ ' value from module %s\n ' % (repr (k ), repr (usename )))
1876
1876
param_map [k ] = v
1877
1877
1878
1878
return param_map
@@ -2385,7 +2385,7 @@ def get_parameters(vars, global_params={}):
2385
2385
2386
2386
elif iscomplex (vars [n ]):
2387
2387
outmess (f'get_parameters[TODO]: '
2388
- f'implement evaluation of complex expression { v } ' )
2388
+ f'implement evaluation of complex expression { v } \n ' )
2389
2389
2390
2390
try :
2391
2391
params [n ] = eval (v , g_params , params )
@@ -2633,7 +2633,7 @@ def analyzevars(block):
2633
2633
vars [n ]['intent' ].append ('c' )
2634
2634
else :
2635
2635
errmess (
2636
- "analyzevars: charselector=%r unhandled." % (d ))
2636
+ "analyzevars: charselector=%r unhandled.\n " % (d ))
2637
2637
2638
2638
if 'check' not in vars [n ] and 'args' in block and n in block ['args' ]:
2639
2639
# n is an argument that has no checks defined. Here we
0 commit comments