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
99e843b4
Commit
99e843b4
authored
Sep 10, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct spelling in documentation and code comment
parent
c7a070e9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Doc/whatsnew/2.2.rst
Doc/whatsnew/2.2.rst
+2
-2
Lib/test/test_os.py
Lib/test/test_os.py
+1
-1
Lib/turtle.py
Lib/turtle.py
+1
-1
No files found.
Doc/whatsnew/2.2.rst
View file @
99e843b4
...
...
@@ -1159,7 +1159,7 @@ Some of the more notable changes are:
The main change is the possibility to build Python as a
framework. This installs a self-contained Python installation plus the
OSX framework "glue" into /Library/Frameworks/Python.framework (or
another location of choice). For now there is little immed
e
ate added
another location of choice). For now there is little immed
i
ate added
benefit to this (actually, there is the disadvantage that you have to
change your PATH to be able to find Python), but it is the basis for
creating a fullblown Python application, porting the MacPython IDE,
...
...
@@ -1168,7 +1168,7 @@ Some of the more notable changes are:
The other change is that most MacPython toolbox modules, which
interface to all the MacOS APIs such as windowing, quicktime,
scripting, etc. have been ported. Again, most of these are not of
immed
e
ate use, as they need a full application to be really useful, so
immed
i
ate use, as they need a full application to be really useful, so
they have been commented out in setup.py. People wanting to experiment
can uncomment them. Gestalt and Internet Config modules are enabled by
default.
...
...
Lib/test/test_os.py
View file @
99e843b4
...
...
@@ -1471,7 +1471,7 @@ class TestInvalidFD(unittest.TestCase):
singles
=
[
"fchdir"
,
"dup"
,
"fdopen"
,
"fdatasync"
,
"fstat"
,
"fstatvfs"
,
"fsync"
,
"tcgetpgrp"
,
"ttyname"
]
#singles.append("close")
#We omit close because it doesn'
r
raise an exception on some platforms
#We omit close because it doesn'
t
raise an exception on some platforms
def
get_single
(
f
):
def
helper
(
self
):
if
hasattr
(
os
,
f
):
...
...
Lib/turtle.py
View file @
99e843b4
...
...
@@ -1035,7 +1035,7 @@ class TurtleScreen(TurtleScreenBase):
"""Set turtle-mode ('standard', 'logo' or 'world') and perform reset.
Optional argument:
mode -- on of the strings 'standard', 'logo' or 'world'
mode -- on
e
of the strings 'standard', 'logo' or 'world'
Mode 'standard' is compatible with turtle.py.
Mode 'logo' is compatible with most Logo-Turtle-Graphics.
...
...
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