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
9c131787
Commit
9c131787
authored
Jun 19, 2018
by
Xtreak
Committed by
Xiang Zhang
Jun 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix four spelling typos in documentation (GH-7753)
parent
60c888d0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Doc/howto/doanddont.rst
Doc/howto/doanddont.rst
+1
-1
Doc/library/idle.rst
Doc/library/idle.rst
+1
-1
Doc/library/sysconfig.rst
Doc/library/sysconfig.rst
+1
-1
Doc/library/time.rst
Doc/library/time.rst
+1
-1
No files found.
Doc/howto/doanddont.rst
View file @
9c131787
...
...
@@ -285,7 +285,7 @@ There are also many useful built-in functions people seem not to be aware of
for some reason: :func:`min` and :func:`max` can find the minimum/maximum of
any sequence with comparable semantics, for example, yet many people write
their own :func:`max`/:func:`min`. Another highly useful function is
:func:`reduce` which can be used to repeatly apply a binary operation to a
:func:`reduce` which can be used to repeat
ed
ly apply a binary operation to a
sequence, reducing it to a single value. For example, compute a factorial
with a series of multiply operations::
...
...
Doc/library/idle.rst
View file @
9c131787
...
...
@@ -442,7 +442,7 @@ longer or disable the extension.
Calltips
^^^^^^^^
A calltip is shown when one types :kbd:`(` after the name of an *acc
c
essible*
A calltip is shown when one types :kbd:`(` after the name of an *accessible*
function. A name expression may include dots and subscripts. A calltip
remains until it is clicked, the cursor is moved out of the argument area,
or :kbd:`)` is typed. When the cursor is in the argument part of a definition,
...
...
Doc/library/sysconfig.rst
View file @
9c131787
...
...
@@ -83,7 +83,7 @@ Python currently supports seven schemes:
- *nt*: scheme for NT platforms like Windows.
- *nt_user*: scheme for NT platforms, when the *user* option is used.
- *os2*: scheme for OS/2 platforms.
- *os2_home*: scheme for OS/2 patforms, when the *user* option is used.
- *os2_home*: scheme for OS/2 p
l
atforms, when the *user* option is used.
Each scheme is itself composed of a series of paths and each path has a unique
identifier. Python currently uses eight paths:
...
...
Doc/library/time.rst
View file @
9c131787
...
...
@@ -236,7 +236,7 @@ The module defines the following functions and data items:
argument. If *t* is not provided, the current time as returned by
:func:`localtime` is used. *format* must be a string. :exc:`ValueError` is
raised if any field in *t* is outside of the allowed range. :func:`strftime`
returns a locale depedent byte string; the result may be converted to unicode
returns a locale depe
n
dent byte string; the result may be converted to unicode
by doing ``strftime(<myformat>).decode(locale.getlocale()[1])``.
.. versionchanged:: 2.1
...
...
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