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
64af7c0d
Commit
64af7c0d
authored
May 24, 2011
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#12074: merge with 3.2.
parents
17ec7cd9
84f75c68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Lib/test/regrtest.py
Lib/test/regrtest.py
+4
-2
No files found.
Lib/test/regrtest.py
View file @
64af7c0d
...
...
@@ -632,7 +632,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
continue
accumulate_result(test, result)
if not quiet:
print("
[{
1
:{
0
}}{
2
}
/
{
3
}]
{
4
}
".format(
fmt = "
[{
1
:{
0
}}{
2
}
/
{
3
}]
{
4
}
" if bad else "
[{
1
:{
0
}}{
2
}]
{
4
}
"
print(fmt.format(
test_count_width, test_index, test_count,
len(bad), test))
if stdout:
...
...
@@ -653,7 +654,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
else:
for test_index, test in enumerate(tests, 1):
if not quiet:
print("
[{
1
:{
0
}}{
2
}
/
{
3
}]
{
4
}
".format(
fmt = "
[{
1
:{
0
}}{
2
}
/
{
3
}]
{
4
}
" if bad else "
[{
1
:{
0
}}{
2
}]
{
4
}
"
print(fmt.format(
test_count_width, test_index, test_count, len(bad), test))
sys.stdout.flush()
if trace:
...
...
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