Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions yapf/yapflib/unwrapped_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ def _SplitPenalty(prev_token, cur_token):
"""Return the penalty for breaking the line before the current token."""
pval = prev_token.value
cval = cur_token.value

if pval == 'not':
return split_penalty.UNBREAKABLE

Expand Down Expand Up @@ -567,6 +568,11 @@ def _SplitPenalty(prev_token, cur_token):
return style.Get('SPLIT_PENALTY_AFTER_UNARY_OPERATOR')
if pval == ',':
# Breaking after a comma is fine, if need be.
# But slightly prefer split before named assign
if (format_token.Subtype.DEFAULT_OR_NAMED_ASSIGN in cur_token.subtypes or
format_token.Subtype.DEFAULT_OR_NAMED_ASSIGN_ARG_LIST in
cur_token.subtypes):
return -30
return 0
if pval == '**' or cval == '**':
return split_penalty.STRONGLY_CONNECTED
Expand Down