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
148724d3
Commit
148724d3
authored
Jul 23, 2010
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rip out old testing code that was inlined in threading.
Partially closes issue 9346. Thanks Brian Brazil for the patch.
parent
f079c57c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
88 deletions
+0
-88
Lib/threading.py
Lib/threading.py
+0
-88
No files found.
Lib/threading.py
View file @
148724d3
...
...
@@ -871,91 +871,3 @@ def _after_fork():
_active
.
clear
()
_active
.
update
(
new_active
)
assert
len
(
_active
)
==
1
# Self-test code
def
_test
():
class
BoundedQueue
(
_Verbose
):
def
__init__
(
self
,
limit
):
_Verbose
.
__init__
(
self
)
self
.
mon
=
RLock
()
self
.
rc
=
Condition
(
self
.
mon
)
self
.
wc
=
Condition
(
self
.
mon
)
self
.
limit
=
limit
self
.
queue
=
deque
()
def
put
(
self
,
item
):
self
.
mon
.
acquire
()
while
len
(
self
.
queue
)
>=
self
.
limit
:
self
.
_note
(
"put(%s): queue full"
,
item
)
self
.
wc
.
wait
()
self
.
queue
.
append
(
item
)
self
.
_note
(
"put(%s): appended, length now %d"
,
item
,
len
(
self
.
queue
))
self
.
rc
.
notify
()
self
.
mon
.
release
()
def
get
(
self
):
self
.
mon
.
acquire
()
while
not
self
.
queue
:
self
.
_note
(
"get(): queue empty"
)
self
.
rc
.
wait
()
item
=
self
.
queue
.
popleft
()
self
.
_note
(
"get(): got %s, %d left"
,
item
,
len
(
self
.
queue
))
self
.
wc
.
notify
()
self
.
mon
.
release
()
return
item
class
ProducerThread
(
Thread
):
def
__init__
(
self
,
queue
,
quota
):
Thread
.
__init__
(
self
,
name
=
"Producer"
)
self
.
queue
=
queue
self
.
quota
=
quota
def
run
(
self
):
from
random
import
random
counter
=
0
while
counter
<
self
.
quota
:
counter
=
counter
+
1
self
.
queue
.
put
(
"%s.%d"
%
(
self
.
name
,
counter
))
_sleep
(
random
()
*
0.00001
)
class
ConsumerThread
(
Thread
):
def
__init__
(
self
,
queue
,
count
):
Thread
.
__init__
(
self
,
name
=
"Consumer"
)
self
.
queue
=
queue
self
.
count
=
count
def
run
(
self
):
while
self
.
count
>
0
:
item
=
self
.
queue
.
get
()
print
(
item
)
self
.
count
=
self
.
count
-
1
NP
=
3
QL
=
4
NI
=
5
Q
=
BoundedQueue
(
QL
)
P
=
[]
for
i
in
range
(
NP
):
t
=
ProducerThread
(
Q
,
NI
)
t
.
name
=
"Producer-%d"
%
(
i
+
1
)
P
.
append
(
t
)
C
=
ConsumerThread
(
Q
,
NI
*
NP
)
for
t
in
P
:
t
.
start
()
_sleep
(
0.000001
)
C
.
start
()
for
t
in
P
:
t
.
join
()
C
.
join
()
if
__name__
==
'__main__'
:
_test
()
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