mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
The usual.
This commit is contained in:
parent
f84a539d38
commit
ff712aa8ab
28 changed files with 910 additions and 92 deletions
|
@ -21,7 +21,7 @@ def task(ident):
|
|||
delay = whrandom.random() * numtasks
|
||||
whmutex.release()
|
||||
if verbose:
|
||||
print 'task', ident, 'will run for', delay, 'sec'
|
||||
print 'task', ident, 'will run for', round(delay, 1), 'sec'
|
||||
time.sleep(delay)
|
||||
if verbose:
|
||||
print 'task', ident, 'done'
|
||||
|
@ -89,7 +89,7 @@ def task2(ident):
|
|||
delay = whrandom.random() * numtasks
|
||||
whmutex.release()
|
||||
if verbose:
|
||||
print 'task', ident, 'will run for', delay, 'sec'
|
||||
print 'task', ident, 'will run for', round(delay, 1), 'sec'
|
||||
time.sleep(delay)
|
||||
if verbose:
|
||||
print 'task', ident, 'entering barrier', i
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue