mirror of
https://github.com/python/cpython.git
synced 2025-10-13 02:13:03 +00:00
Make naming consistent
This commit is contained in:
parent
2decf22b95
commit
23eae8646c
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
import unittest
|
mport unittest
|
||||||
from test import support
|
from test import support
|
||||||
import gc
|
import gc
|
||||||
import weakref
|
import weakref
|
||||||
|
@ -1677,7 +1677,7 @@ class bad_dict_clear:
|
||||||
def __hash__(self):
|
def __hash__(self):
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
class Test_Weird_Bugs(unittest.TestCase):
|
class TestWeirdBugs(unittest.TestCase):
|
||||||
def test_8420_set_merge(self):
|
def test_8420_set_merge(self):
|
||||||
# This used to segfault
|
# This used to segfault
|
||||||
global be_bad, set2, dict2
|
global be_bad, set2, dict2
|
||||||
|
@ -1837,7 +1837,7 @@ def test_main(verbose=None):
|
||||||
TestIdentities,
|
TestIdentities,
|
||||||
TestVariousIteratorArgs,
|
TestVariousIteratorArgs,
|
||||||
TestGraphs,
|
TestGraphs,
|
||||||
Test_Weird_Bugs,
|
TestWeirdBugs,
|
||||||
)
|
)
|
||||||
|
|
||||||
support.run_unittest(*test_classes)
|
support.run_unittest(*test_classes)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue