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
4e6e5653
Commit
4e6e5653
authored
Jun 20, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix English spelling and grammar errors
parent
4183387e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
10 deletions
+9
-10
Doc/tools/extensions/suspicious.py
Doc/tools/extensions/suspicious.py
+1
-1
Misc/NEWS
Misc/NEWS
+6
-7
Modules/_tkinter.c
Modules/_tkinter.c
+2
-2
No files found.
Doc/tools/extensions/suspicious.py
View file @
4e6e5653
...
...
@@ -270,5 +270,5 @@ class SuspiciousVisitor(nodes.GenericNodeVisitor):
# ignore comments -- too much false positives.
# (although doing this could miss some errors;
# there were two sections "commented-out" by mistake
# in the Python docs that would not be ca
tched
)
# in the Python docs that would not be ca
ught
)
raise
nodes
.
SkipNode
Misc/NEWS
View file @
4e6e5653
...
...
@@ -4566,7 +4566,7 @@ Core and Builtins
- Issue #11450: Don'
t
truncate
hg
version
info
in
Py_GetBuildInfo
()
when
there
are
many
tags
(
e
.
g
.
when
using
mq
).
Patch
by
Nadeem
Vawda
.
-
Issue
#
10451
:
memoryview
objects
could
allow
to
mutate
a
readable
buffer
.
-
Issue
#
10451
:
memoryview
objects
could
allow
mutating
a
readable
buffer
.
Initial
patch
by
Ross
Lagerwall
.
-
Issue
#
10892
:
Don
't segfault when trying to delete __abstractmethods__ from a
...
...
@@ -4635,7 +4635,7 @@ Library
seeking
a
bit
forward
,
writing
,
then
seeking
before
the
previous
write
but
still
within
buffered
data
,
and
writing
again
).
-
Issue
#
8498
:
In
socket
.
accept
(),
allow
to
specify
0
as
a
backlog
value
in
-
Issue
#
8498
:
In
socket
.
accept
(),
allow
specifying
0
as
a
backlog
value
in
order
to
accept
exactly
one
connection
.
Patch
by
Daniel
Evers
.
-
Issue
#
12012
:
ssl
.
PROTOCOL_SSLv2
becomes
optional
.
...
...
@@ -6096,8 +6096,8 @@ Extension Modules
- Build the ossaudio extension on GNU/kFreeBSD.
- On Windows, ctypes
does no longer check
the stack before and after calling a
foreign function. This allows
to use
the unmodified libffi library.
- On Windows, ctypes
no longer checks
the stack before and after calling a
foreign function. This allows
using
the unmodified libffi library.
Tests
-----
...
...
@@ -9432,8 +9432,7 @@ Library
-
The
mimetools
module
has
been
deprecated
for
removal
in
3.0
.
-
The
ctypes
.
byref
function
now
takes
an
optional
second
parameter
which
allows
to
specify
an
offset
in
bytes
for
the
constructed
pointer
-
like
object
.
which
specifies
an
offset
in
bytes
for
the
constructed
pointer
-
like
object
.
-
Added
the
ast
module
.
...
...
@@ -11058,7 +11057,7 @@ Library
-- the failure just occurred later, with a more cumbersome
exception.
- Patch #787789: allow
to pass
custom TestRunner instances to
- Patch #787789: allow
passing
custom TestRunner instances to
unittest's main() function.
- Patches #1550273, #1550272: fix a few bugs in unittest and add a
...
...
Modules/_tkinter.c
View file @
4e6e5653
...
...
@@ -52,8 +52,8 @@ Copyright (C) 1994 Steen Lumholt.
(size_t)(size) <= UINT_MAX / (size_t)(elemsize))
/* Starting with Tcl 8.4, many APIs offer const-correctness. Unfortunately,
making _tkinter correct for this API means
to break
earlier
versions. USE_COMPAT_CONST allows
to make
_tkinter work with both 8.4 and
making _tkinter correct for this API means
breaking
earlier
versions. USE_COMPAT_CONST allows
making
_tkinter work with both 8.4 and
earlier versions. Once Tcl releases before 8.4 don't need to be supported
anymore, this should go. */
#define USE_COMPAT_CONST
...
...
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