From 71098c12079d3c0dd335508d52c13ec22b81a68a Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 18 Aug 2017 12:05:03 -0700 Subject: [PATCH] Clarify C++-style one-line comments --- pep-0007.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0007.txt b/pep-0007.txt index 9d6f46eb0..bceac1bef 100644 --- a/pep-0007.txt +++ b/pep-0007.txt @@ -56,7 +56,7 @@ C dialect * All function declarations and definitions must use full prototypes (i.e. specify the types of all arguments). -* Never use C++ style // one-line comments. +* Only use C++ style // one-line comments in Python 3.6 or later. * No compiler warnings with major compilers (gcc, VC++, a few others).