From 6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 6 Jul 2019 18:13:02 -0400 Subject: [PATCH] bpo-37456: Slash ('/') is now part of syntax. (GH-14627) --- Doc/faq/programming.rst | 4 ---- .../Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) create mode 100644 Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index a00c6a053ef..a36fa4aefe8 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -800,10 +800,6 @@ an error:: File "", line 1, in TypeError: pow() takes no keyword arguments -Note that as of this writing this is only documentational and no valid syntax -in Python, although there is :pep:`570`, which proposes a syntax for -position-only parameters in Python. - Numbers and strings =================== diff --git a/Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst b/Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst new file mode 100644 index 00000000000..4d158733b0e --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst @@ -0,0 +1 @@ +Slash ('/') is now part of syntax.