mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.GenericAlias (GH-29294)
(cherry picked from commit 446be16686
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
f1dd5ed1f3
commit
abceb66c7e
3 changed files with 15 additions and 1 deletions
|
@ -1211,7 +1211,7 @@ def _is_dataclass_instance(obj):
|
|||
def is_dataclass(obj):
|
||||
"""Returns True if obj is a dataclass or an instance of a
|
||||
dataclass."""
|
||||
cls = obj if isinstance(obj, type) else type(obj)
|
||||
cls = obj if isinstance(obj, type) and not isinstance(obj, GenericAlias) else type(obj)
|
||||
return hasattr(cls, _FIELDS)
|
||||
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ import abc
|
|||
import pickle
|
||||
import inspect
|
||||
import builtins
|
||||
import types
|
||||
import unittest
|
||||
from unittest.mock import Mock
|
||||
from typing import ClassVar, Any, List, Union, Tuple, Dict, Generic, TypeVar, Optional, Protocol
|
||||
|
@ -1354,6 +1355,17 @@ class TestCase(unittest.TestCase):
|
|||
with self.assertRaisesRegex(TypeError, 'should be called on dataclass instances'):
|
||||
replace(obj, x=0)
|
||||
|
||||
def test_is_dataclass_genericalias(self):
|
||||
@dataclass
|
||||
class A(types.GenericAlias):
|
||||
origin: type
|
||||
args: type
|
||||
self.assertTrue(is_dataclass(A))
|
||||
a = A(list, int)
|
||||
self.assertTrue(is_dataclass(type(a)))
|
||||
self.assertTrue(is_dataclass(a))
|
||||
|
||||
|
||||
def test_helper_fields_with_class_instance(self):
|
||||
# Check that we can call fields() on either a class or instance,
|
||||
# and get back the same thing.
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Fix :func:`dataclasses.is_dataclass` for dataclasses which are subclasses of
|
||||
:class:`types.GenericAlias`.
|
Loading…
Add table
Add a link
Reference in a new issue