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
c3fc341c
Commit
c3fc341c
authored
Jul 28, 2014
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Plain Diff
Issue #21704: Merge.
parents
d6af0478
e0e65817
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_multiprocessing/multiprocessing.c
Modules/_multiprocessing/multiprocessing.c
+2
-0
No files found.
Misc/ACKS
View file @
c3fc341c
...
@@ -52,6 +52,7 @@ Ankur Ankan
...
@@ -52,6 +52,7 @@ Ankur Ankan
Jon Anglin
Jon Anglin
Heidi Annexstad
Heidi Annexstad
Ramchandra Apte
Ramchandra Apte
Arfrever Frehtes Taifersar Arahesis
Éric Araujo
Éric Araujo
Alicia Arlen
Alicia Arlen
Jeffrey Armstrong
Jeffrey Armstrong
...
...
Misc/NEWS
View file @
c3fc341c
...
@@ -113,6 +113,9 @@ Core and Builtins
...
@@ -113,6 +113,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #21704: Fix build error for _multiprocessing when semaphores
are not available. Patch by Arfrever Frehtes Taifersar Arahesis.
- Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.
- Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.
Patch by Vajrasky Kok.
Patch by Vajrasky Kok.
...
...
Modules/_multiprocessing/multiprocessing.c
View file @
c3fc341c
...
@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
...
@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
{
"recv"
,
multiprocessing_recv
,
METH_VARARGS
,
""
},
{
"recv"
,
multiprocessing_recv
,
METH_VARARGS
,
""
},
{
"send"
,
multiprocessing_send
,
METH_VARARGS
,
""
},
{
"send"
,
multiprocessing_send
,
METH_VARARGS
,
""
},
#endif
#endif
#ifndef POSIX_SEMAPHORES_NOT_ENABLED
{
"sem_unlink"
,
_PyMp_sem_unlink
,
METH_VARARGS
,
""
},
{
"sem_unlink"
,
_PyMp_sem_unlink
,
METH_VARARGS
,
""
},
#endif
{
NULL
}
{
NULL
}
};
};
...
...
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