mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-39481: PEP 585 for ipaddress.py (GH-19418)
This commit is contained in:
parent
a8403d057d
commit
2fa67df605
2 changed files with 10 additions and 0 deletions
|
@ -7,6 +7,7 @@ from collections import (
|
|||
)
|
||||
from collections.abc import *
|
||||
from contextlib import AbstractContextManager, AbstractAsyncContextManager
|
||||
from ipaddress import IPv4Network, IPv4Interface, IPv6Network, IPv6Interface
|
||||
from itertools import chain
|
||||
from os import DirEntry
|
||||
from re import Pattern, Match
|
||||
|
@ -36,6 +37,9 @@ class BaseTest(unittest.TestCase):
|
|||
Mapping, MutableMapping, MappingView,
|
||||
KeysView, ItemsView, ValuesView,
|
||||
Sequence, MutableSequence,
|
||||
MappingProxyType,
|
||||
DirEntry,
|
||||
IPv4Network, IPv4Interface, IPv6Network, IPv6Interface,
|
||||
MappingProxyType, DirEntry,
|
||||
chain,
|
||||
):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue