gh-140766: [Enum] add show_flag_values and bin to enum.__all__ (GH-140765)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Guo Ci 2025-10-30 13:32:55 -04:00 committed by GitHub
parent 95a3564869
commit e4deefbb2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View file

@ -5324,7 +5324,7 @@ def __new__(cls, value, label):
class MiscTestCase(unittest.TestCase):
def test__all__(self):
support.check__all__(self, enum, not_exported={'bin', 'show_flag_values'})
support.check__all__(self, enum)
@cpython_only
def test_lazy_import(self):