bpo-43693: Turn localspluskinds into an object by gvanrossum · Pull Request #26749 · python/cpython
@ericsnowcurrently I think I have one failing test left, test_ctypes. In particular:
======================================================================
FAIL: test_frozentable (ctypes.test.test_values.PythonValuesTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/guido/cpython/Lib/ctypes/test/test_values.py", line 87, in test_frozentable
self.assertEqual(items, expected, "PyImport_FrozenModules example "
AssertionError: Lists differ: [('__hello__', 133), ('__phello__', -133), ('__phello__.spam', 133)] != [('__hello__', 128), ('__phello__', -128), ('__phello__.spam', 128)]
First differing element 0:
('__hello__', 133)
('__hello__', 128)
- [('__hello__', 133), ('__phello__', -133), ('__phello__.spam', 133)]
? ^^ ^^ ^^
+ [('__hello__', 128), ('__phello__', -128), ('__phello__.spam', 128)]
? ^^ ^^ ^^
: PyImport_FrozenModules example in Doc/library/ctypes.rst may be out of date
----------------------------------------------------------------------
Have you run into this?