diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-06 22:13:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-06 22:13:02 (GMT) |
commit | 6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b (patch) | |
tree | 6011dd9ab5f96b879cb9d1c2e399a77cd27f6c41 /Doc | |
parent | f8709e804d16ec5d44b1d2f00d59a0f78df7b792 (diff) | |
download | cpython-6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b.zip cpython-6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b.tar.gz cpython-6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b.tar.bz2 |
bpo-37456: Slash ('/') is now part of syntax. (GH-14627)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/programming.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index a00c6a0..a36fa4a 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 =================== |