summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-07-06 18:13:02 -0400
committerGitHub <noreply@github.com>2019-07-06 18:13:02 -0400
commit6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b (patch)
tree6011dd9ab5f96b879cb9d1c2e399a77cd27f6c41
parentf8709e804d16ec5d44b1d2f00d59a0f78df7b792 (diff)
downloadcpython-git-6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b.tar.gz
bpo-37456: Slash ('/') is now part of syntax. (GH-14627)
-rw-r--r--Doc/faq/programming.rst4
-rw-r--r--Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst1
2 files changed, 1 insertions, 4 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index a00c6a053e..a36fa4aefe 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -800,10 +800,6 @@ an error::
File "<stdin>", line 1, in <module>
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 0000000000..4d158733b0
--- /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.