summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLysandros Nikolaou <lisandrosnik@gmail.com>2019-03-10 11:30:11 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2019-03-10 11:30:11 (GMT)
commit1aeeaeb79efa4de41f97b58547e23c2965ecabc5 (patch)
tree1150b1531a70f0df3de6090231b18b0715fbe087 /Misc
parent11205b80309a01666eefee2301a244aa73a4c450 (diff)
downloadcpython-1aeeaeb79efa4de41f97b58547e23c2965ecabc5.zip
cpython-1aeeaeb79efa4de41f97b58547e23c2965ecabc5.tar.gz
cpython-1aeeaeb79efa4de41f97b58547e23c2965ecabc5.tar.bz2
bpo-21314: Add a FAQ entry about positional only parameters (GH-10641)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2018-11-21-23-01-37.bpo-21314.PG33VT.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2018-11-21-23-01-37.bpo-21314.PG33VT.rst b/Misc/NEWS.d/next/Documentation/2018-11-21-23-01-37.bpo-21314.PG33VT.rst
new file mode 100644
index 0000000..83080a3
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-11-21-23-01-37.bpo-21314.PG33VT.rst
@@ -0,0 +1,3 @@
+A new entry was added to the Core Language Section of the Programming FAQ,
+which explaines the usage of slash(/) in the signature of a function. Patch
+by Lysandros Nikolaou