Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
78553138
Commit
78553138
authored
Mar 28, 2018
by
Julien Palard
Committed by
GitHub
Mar 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos '.::' should typically just be '::'. (GH-6165)
parent
bac2d5ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Doc/faq/windows.rst
Doc/faq/windows.rst
+1
-1
Doc/library/argparse.rst
Doc/library/argparse.rst
+1
-1
Doc/library/mmap.rst
Doc/library/mmap.rst
+1
-1
No files found.
Doc/faq/windows.rst
View file @
78553138
...
...
@@ -60,7 +60,7 @@ program. So, how do you arrange for the interpreter to handle your Python?
First, you need to make sure that your command window recognises the word
"python" as an instruction to start the interpreter. If you have opened a
command window, you should try entering the command ``python`` and hitting
return
.
::
return::
C:\Users\YourName> python
...
...
Doc/library/argparse.rst
View file @
78553138
...
...
@@ -981,7 +981,7 @@ is used when no command-line argument was present::
Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the
command-line argument was not present
.
::
command-line argument was not present::
>>> parser = argparse.ArgumentParser()
>>> parser.add_argument('--foo', default=argparse.SUPPRESS)
...
...
Doc/library/mmap.rst
View file @
78553138
...
...
@@ -127,7 +127,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length
:class:`~mmap.mmap` can also be used as a context manager in a :keyword:`with`
statement
.
::
statement::
import mmap
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment