From 1a6cc45d066b5d9976aeda534227c06ced57dce4 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 14 Apr 2016 10:21:55 -0700 Subject: [PATCH] Fix style inconsistency with "and" on continuation line. --- pep-0008.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pep-0008.txt b/pep-0008.txt index d88d113067f..a148a27af25 100644 --- a/pep-0008.txt +++ b/pep-0008.txt @@ -147,8 +147,8 @@ Acceptable options in this situation include, but are not limited to:: do_something() # Add some extra indentation on the conditional continuation line. - if (this_is_one_thing - and that_is_another_thing): + if (this_is_one_thing and + that_is_another_thing): do_something() The closing brace/bracket/parenthesis on multi-line constructs may