Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7855313

Browse files
authored
Fix typos '.::' should typically just be '::'. (GH-6165)
1 parent bac2d5b commit 7855313

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/faq/windows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ program. So, how do you arrange for the interpreter to handle your Python?
6060
First, you need to make sure that your command window recognises the word
6161
"python" as an instruction to start the interpreter. If you have opened a
6262
command window, you should try entering the command ``python`` and hitting
63-
return.::
63+
return::
6464

6565
C:\Users\YourName> python
6666

Doc/library/argparse.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ is used when no command-line argument was present::
981981

982982

983983
Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the
984-
command-line argument was not present.::
984+
command-line argument was not present::
985985

986986
>>> parser = argparse.ArgumentParser()
987987
>>> parser.add_argument('--foo', default=argparse.SUPPRESS)

Doc/library/mmap.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length
127127

128128

129129
:class:`~mmap.mmap` can also be used as a context manager in a :keyword:`with`
130-
statement.::
130+
statement::
131131

132132
import mmap
133133

0 commit comments

Comments
 (0)