Skip to content

Commit 02ce930

Browse files
committed
pythongh-89683: add tests for deepcopy on frozen dataclasses (pythongh-123098)
Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Eric V. Smith <[email protected]> # Conflicts: # Lib/test/test_dataclasses/__init__.py
1 parent b1257f0 commit 02ce930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_dataclasses/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from unittest.mock import Mock
1717
from typing import ClassVar, Any, List, Union, Tuple, Dict, Generic, TypeVar, Optional, Protocol, DefaultDict
1818
from typing import get_type_hints
19-
from copy import deepcopy
2019
from collections import deque, OrderedDict, namedtuple, defaultdict
20+
from copy import deepcopy
2121
from functools import total_ordering
2222

2323
import typing # Needed for the string "typing.ClassVar[int]" to work as an annotation.

0 commit comments

Comments
 (0)