Commit 028b37c9 authored by Barry Warsaw's avatar Barry Warsaw

PEP 421 requires that .name be lower case.

parent 9b10e1fb
......@@ -599,6 +599,10 @@ class SysModuleTest(unittest.TestCase):
version.serial << 0)
self.assertEqual(sys.implementation.hexversion, hexversion)
# PEP 421 requires that .name be lower case.
self.assertEqual(sys.implementation.name,
sys.implementation.name.lower())
class SizeofTest(unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment