mirror of
https://github.com/python/cpython.git
synced 2025-07-27 05:04:15 +00:00
bpo-41371: Handle lzma lib import error in test_zoneinfo.py (GH-21734)
This commit is contained in:
parent
777b611c8c
commit
5f0769a752
1 changed files with 2 additions and 1 deletions
|
@ -6,7 +6,6 @@ import dataclasses
|
|||
import importlib.metadata
|
||||
import io
|
||||
import json
|
||||
import lzma
|
||||
import os
|
||||
import pathlib
|
||||
import pickle
|
||||
|
@ -20,7 +19,9 @@ from functools import cached_property
|
|||
|
||||
from . import _support as test_support
|
||||
from ._support import OS_ENV_LOCK, TZPATH_TEST_LOCK, ZoneInfoTestBase
|
||||
from test.support.import_helper import import_module
|
||||
|
||||
lzma = import_module('lzma')
|
||||
py_zoneinfo, c_zoneinfo = test_support.get_modules()
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue