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
b3d188f7
Commit
b3d188f7
authored
Dec 02, 2011
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#8414: merge with 3.2.
parents
47862d4c
6cc5bf76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
Lib/test/test_grammar.py
Lib/test/test_grammar.py
+24
-2
No files found.
Lib/test/test_grammar.py
View file @
b3d188f7
...
...
@@ -500,13 +500,35 @@ class GrammarTests(unittest.TestCase):
assert
1
,
1
assert
lambda
x
:
x
assert
1
,
lambda
x
:
x
+
1
try
:
assert
True
except
AssertionError
as
e
:
self
.
fail
(
"'assert True' should not have raised an AssertionError"
)
try
:
assert
True
,
'this should always pass'
except
AssertionError
as
e
:
self
.
fail
(
"'assert True, msg' should not have "
"raised an AssertionError"
)
# these tests fail if python is run with -O, so check __debug__
@
unittest
.
skipUnless
(
__debug__
,
"Won't work if __debug__ is False"
)
def
testAssert2
(
self
):
try
:
assert
0
,
"msg"
except
AssertionError
as
e
:
self
.
assertEqual
(
e
.
args
[
0
],
"msg"
)
else
:
if
__debug__
:
self
.
fail
(
"AssertionError not raised by assert 0"
)
self
.
fail
(
"AssertionError not raised by assert 0"
)
try
:
assert
False
except
AssertionError
as
e
:
self
.
assertEqual
(
len
(
e
.
args
),
0
)
else
:
self
.
fail
(
"AssertionError not raised by 'assert False'"
)
### compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
# Tested below
...
...
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