summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorUltimateCoder <jaysinhp@gmail.com>2017-05-03 16:46:45 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-05-03 16:46:45 (GMT)
commit8856940cf2e82cb17db2b684cd5732fe658605ca (patch)
treeb185e240823e78a7b5b3829185140b0f18da1509 /Doc/reference
parenta5c62a8e9f0de6c4133825a5710984a3cd5e102b (diff)
downloadcpython-8856940cf2e82cb17db2b684cd5732fe658605ca.zip
cpython-8856940cf2e82cb17db2b684cd5732fe658605ca.tar.gz
cpython-8856940cf2e82cb17db2b684cd5732fe658605ca.tar.bz2
bpo-28315: Improve code examples in docs (GH-1372)
Replace File "<stdin>", line 1, in ? with File "<stdin>", line 1, in <module>
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 6e9e07a..b065d19 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -905,7 +905,7 @@ keyword arguments (and any ``**expression`` arguments -- see below). So::
2 1
>>> f(a=1, *(2,))
Traceback (most recent call last):
- File "<stdin>", line 1, in ?
+ File "<stdin>", line 1, in <module>
TypeError: f() got multiple values for keyword argument 'a'
>>> f(1, *(2,))
1 2