mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
This commit is contained in:
parent
3194d1454c
commit
3ddc435af6
107 changed files with 794 additions and 436 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
from test.test_support import run_unittest
|
||||
import unittest
|
||||
import warnings
|
||||
|
||||
class OpcodeTest(unittest.TestCase):
|
||||
|
||||
|
@ -9,7 +10,7 @@ class OpcodeTest(unittest.TestCase):
|
|||
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
|
||||
|
@ -110,7 +111,14 @@ class OpcodeTest(unittest.TestCase):
|
|||
|
||||
|
||||
def test_main():
|
||||
run_unittest(OpcodeTest)
|
||||
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)
|
||||
|
||||
if __name__ == '__main__':
|
||||
test_main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue