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
fa27d5f2
Commit
fa27d5f2
authored
Oct 20, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #28480: Avoid label at end of compound statement --without-threads
Based on patch by Masayuki Yamamoto.
parent
c6b1e157
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/socketmodule.c
Modules/socketmodule.c
+1
-0
No files found.
Misc/NEWS
View file @
fa27d5f2
...
...
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
- Issue #28480: Fix error building socket module when multithreading is
disabled.
- Issue #24452: Make webbrowser support Chrome on Mac OS X.
- Issue #20766: Fix references leaked by pdb in the handling of SIGINT
...
...
Modules/socketmodule.c
View file @
fa27d5f2
...
...
@@ -664,6 +664,7 @@ internal_setblocking(PySocketSockObject *s, int block)
result
=
0
;
done:
;
/* necessary for --without-threads flag */
Py_END_ALLOW_THREADS
if
(
result
)
{
...
...
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