@@ -1296,6 +1296,9 @@ def _break_around_binary_operators(tokens):
1296
1296
"""
1297
1297
line_break = False
1298
1298
unary_context = True
1299
+ param_name_context = False
1300
+ # only counted when inside param list, `-1` when not counting
1301
+ enclosure_count = - 1
1299
1302
# Previous non-newline token types and text
1300
1303
previous_token_type = None
1301
1304
previous_text = None
@@ -1306,11 +1309,30 @@ def _break_around_binary_operators(tokens):
1306
1309
line_break = True
1307
1310
else :
1308
1311
yield (token_type , text , previous_token_type , previous_text ,
1309
- line_break , unary_context , start )
1312
+ line_break , unary_context , param_name_context , start )
1310
1313
unary_context = text in '([{,;'
1311
1314
line_break = False
1312
1315
previous_token_type = token_type
1313
1316
previous_text = text
1317
+ if enclosure_count != - 1 :
1318
+ if token_type != tokenize .OP :
1319
+ pass
1320
+ elif text in '([{' :
1321
+ enclosure_count += 1
1322
+ elif text in ')]}' :
1323
+ enclosure_count -= 1
1324
+ if enclosure_count == 0 :
1325
+ # stop counting enclosures
1326
+ enclosure_count = - 1
1327
+ elif token_type == tokenize .NAME and text == 'def' :
1328
+ # start counting enclosures
1329
+ enclosure_count = 0
1330
+ # check for enclosure count and last token to make sure that
1331
+ # only the actual positional-only marker matches here:
1332
+ # def f(
1333
+ # x=4/2, y=(1, 4/2), /
1334
+ # ):
1335
+ param_name_context = text == ',' and enclosure_count == 1
1314
1336
1315
1337
1316
1338
@register_check
@@ -1335,9 +1357,10 @@ def break_before_binary_operator(logical_line, tokens):
1335
1357
"""
1336
1358
for context in _break_around_binary_operators (tokens ):
1337
1359
(token_type , text , previous_token_type , previous_text ,
1338
- line_break , unary_context , start ) = context
1360
+ line_break , unary_context , param_name_context , start ) = context
1339
1361
if (_is_binary_operator (token_type , text ) and line_break and
1340
1362
not unary_context and
1363
+ not param_name_context and
1341
1364
not _is_binary_operator (previous_token_type ,
1342
1365
previous_text )):
1343
1366
yield start , "W503 line break before binary operator"
@@ -1367,15 +1390,18 @@ def break_after_binary_operator(logical_line, tokens):
1367
1390
Okay: var = (1 +\n -1 +\n -2)
1368
1391
"""
1369
1392
prev_start = None
1393
+ prev_param_name_context = False
1370
1394
for context in _break_around_binary_operators (tokens ):
1371
1395
(token_type , text , previous_token_type , previous_text ,
1372
- line_break , unary_context , start ) = context
1396
+ line_break , unary_context , param_name_context , start ) = context
1373
1397
if (_is_binary_operator (previous_token_type , previous_text ) and
1374
1398
line_break and
1375
1399
not unary_context and
1400
+ not prev_param_name_context and
1376
1401
not _is_binary_operator (token_type , text )):
1377
1402
yield prev_start , "W504 line break after binary operator"
1378
1403
prev_start = start
1404
+ prev_param_name_context = param_name_context
1379
1405
1380
1406
1381
1407
@register_check
0 commit comments