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
9df891ca
Commit
9df891ca
authored
May 15, 2013
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix typos in the multiprocessing module.
parent
ef535584
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
Lib/multiprocessing/synchronize.py
Lib/multiprocessing/synchronize.py
+1
-1
Misc/NEWS
Misc/NEWS
+4
-2
Modules/_multiprocessing/multiprocessing.c
Modules/_multiprocessing/multiprocessing.c
+1
-1
No files found.
Lib/multiprocessing/synchronize.py
View file @
9df891ca
...
...
@@ -199,7 +199,7 @@ class Condition(object):
num_waiters
=
(
self
.
_sleeping_count
.
_semlock
.
_get_value
()
-
self
.
_woken_count
.
_semlock
.
_get_value
())
except
Exception
:
num_waiters
=
'unkown'
num_waiters
=
'unk
n
own'
return
'<Condition(%s, %s)>'
%
(
self
.
_lock
,
num_waiters
)
def
wait
(
self
,
timeout
=
None
):
...
...
Misc/NEWS
View file @
9df891ca
...
...
@@ -10,14 +10,16 @@ What's New in Python 3.3.3?
Core and Builtins
-----------------
- Issue #17754: Make ctypes.util.find_library() independent of the locale.
- Issue #17927: Frame objects kept arguments alive if they had been copied into
a cell, even if the cell was cleared.
Library
-------
- Fix typos in the multiprocessing module.
- Issue #17754: Make ctypes.util.find_library() independent of the locale.
- Issue #17968: Fix memory leak in os.listxattr().
Documentation
...
...
Modules/_multiprocessing/multiprocessing.c
View file @
9df891ca
...
...
@@ -46,7 +46,7 @@ mp_SetError(PyObject *Type, int num)
break
;
default:
PyErr_Format
(
PyExc_RuntimeError
,
"unkown error number %d"
,
num
);
"unk
n
own error number %d"
,
num
);
}
return
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