]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #28815: Change '?' to '<module>' in some doc examples.
authorTerry Jan Reedy <tjreedy@udel.edu>
Fri, 30 Sep 2016 19:38:48 +0000 (15:38 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Fri, 30 Sep 2016 19:38:48 +0000 (15:38 -0400)
Patch by Mariatta Wijaya.

Doc/tutorial/errors.rst
Misc/ACKS

index 6911ce9b215a47a62cf9cf8bf0cde7ef83deef5a..291fb4d1a1871085586b494a71f73f9245258854 100644 (file)
@@ -18,7 +18,7 @@ Syntax errors, also known as parsing errors, are perhaps the most common kind of
 complaint you get while you are still learning Python::
 
    >>> while True print('Hello world')
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1
        while True print('Hello world')
                       ^
    SyntaxError: invalid syntax
@@ -44,15 +44,15 @@ programs, however, and result in error messages as shown here::
 
    >>> 10 * (1/0)
    Traceback (most recent call last):
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1, in <module>
    ZeroDivisionError: division by zero
    >>> 4 + spam*3
    Traceback (most recent call last):
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1, in <module>
    NameError: name 'spam' is not defined
    >>> '2' + 2
    Traceback (most recent call last):
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1, in <module>
    TypeError: Can't convert 'int' object to str implicitly
 
 The last line of the error message indicates what happened. Exceptions come in
@@ -214,7 +214,7 @@ exception to occur. For example::
 
    >>> raise NameError('HiThere')
    Traceback (most recent call last):
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1, in <module>
    NameError: HiThere
 
 The sole argument to :keyword:`raise` indicates the exception to be raised.
@@ -233,7 +233,7 @@ re-raise the exception::
    ...
    An exception flew by!
    Traceback (most recent call last):
-     File "<stdin>", line 2, in ?
+     File "<stdin>", line 2, in <module>
    NameError: HiThere
 
 
@@ -308,7 +308,7 @@ example::
    ...
    Goodbye, world!
    Traceback (most recent call last):
-     File "<stdin>", line 2, in ?
+     File "<stdin>", line 2, in <module>
    KeyboardInterrupt
 
 A *finally clause* is always executed before leaving the :keyword:`try`
@@ -340,7 +340,7 @@ complicated example::
    >>> divide("2", "1")
    executing finally clause
    Traceback (most recent call last):
-     File "<stdin>", line 1, in ?
+     File "<stdin>", line 1, in <module>
      File "<stdin>", line 3, in divide
    TypeError: unsupported operand type(s) for /: 'str' and 'str'
 
index b29638713d873b63810274502ff6527135e2e87b..6c1bafee18056471b513de57679af9f589f878db 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1595,6 +1595,7 @@ Truida Wiedijk
 Felix Wiemann
 Gerry Wiener
 Frank Wierzbicki
+Mariatta Wijaya
 Santoso Wijaya
 Chris Wilcox
 Bryce "Zooko" Wilcox-O'Hearn