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
63eef1e0
Commit
63eef1e0
authored
Jan 06, 2011
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get --coverage to be an acceptable flag for test.regrtest again.
parent
610e544b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
Doc/reference/expressions.rst
Doc/reference/expressions.rst
+1
-1
Lib/test/regrtest.py
Lib/test/regrtest.py
+2
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/reference/expressions.rst
View file @
63eef1e0
...
...
@@ -7,7 +7,7 @@ Expressions
.. index:: expression, BNF
This chapter explains the meaning of the elements of expressions in Python.
This chapter explains the meaning of the elements of expressions in Python.
**Syntax Notes:** In this and the following chapters, extended BNF notation will
be used to describe syntax, not lexical analysis. When (one alternative of) a
...
...
Lib/test/regrtest.py
View file @
63eef1e0
...
...
@@ -264,8 +264,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
'exclude'
,
'single'
,
'slow'
,
'random'
,
'fromfile'
,
'findleaks'
,
'use='
,
'threshold='
,
'trace'
,
'coverdir='
,
'nocoverdir'
,
'runleaks'
,
'huntrleaks='
,
'memlimit='
,
'randseed='
,
'multiprocess='
,
'
slaveargs='
,
'forever'
,
'debug'
,
'start=
'
,
'nowindows'
,
'header'
])
'multiprocess='
,
'
coverage'
,
'slaveargs='
,
'forever'
,
'debug
'
,
'
start='
,
'
nowindows'
,
'header'
])
except
getopt
.
error
as
msg
:
usage
(
msg
)
...
...
Misc/NEWS
View file @
63eef1e0
...
...
@@ -172,6 +172,8 @@ Tools/Demos
Tests
-----
- Make the --coverage flag work for test.regrtest.
- Issue #1677694: Refactor and improve test_timeout. Original patch by
Björn Lindqvist.
...
...
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