mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
This commit is contained in:
parent
3ddc435af6
commit
ce8e33a095
107 changed files with 436 additions and 794 deletions
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
from test.test_support import run_unittest
|
||||
import unittest
|
||||
import warnings
|
||||
|
||||
class OpcodeTest(unittest.TestCase):
|
||||
|
||||
|
|
@ -10,7 +9,7 @@ def test_try_inside_for_loop(self):
|
|||
n = 0
|
||||
for i in range(10):
|
||||
n = n+i
|
||||
try: 1 // 0
|
||||
try: 1/0
|
||||
except NameError: pass
|
||||
except ZeroDivisionError: pass
|
||||
except TypeError: pass
|
||||
|
|
@ -111,14 +110,7 @@ def __mod__(self, value):
|
|||
|
||||
|
||||
def test_main():
|
||||
with warnings.catch_warnings():
|
||||
# Silence Py3k warning
|
||||
warnings.filterwarnings("ignore", "exceptions must derive from "
|
||||
"BaseException", DeprecationWarning)
|
||||
warnings.filterwarnings("ignore", "catching classes that don't "
|
||||
"inherit from BaseException is not allowed",
|
||||
DeprecationWarning)
|
||||
run_unittest(OpcodeTest)
|
||||
run_unittest(OpcodeTest)
|
||||
|
||||
if __name__ == '__main__':
|
||||
test_main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue