]> granicus.if.org Git - python/commitdiff
bpo-37456: Slash ('/') is now part of syntax. (GH-14627)
authorTerry Jan Reedy <tjreedy@udel.edu>
Sat, 6 Jul 2019 22:13:02 +0000 (18:13 -0400)
committerGitHub <noreply@github.com>
Sat, 6 Jul 2019 22:13:02 +0000 (18:13 -0400)
Doc/faq/programming.rst
Misc/NEWS.d/next/Documentation/2019-07-06-17-51-36.bpo-37456.lgAQHn.rst [new file with mode: 0644]

index a00c6a053ef120dce6f24d2a2ec4943ccbe02e1a..a36fa4aefe8864fc30d110bf5f901ecba54bc38d 100644 (file)
@@ -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 (file)
index 0000000..4d15873
--- /dev/null
@@ -0,0 +1 @@
+Slash ('/') is now part of syntax.