Skip to content

Commit ada56cc

Browse files
Fixup I don't know how i messed that one up
1 parent 7ede8bd commit ada56cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/pythoninfo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,16 +657,17 @@ def collect_zlib(info_add):
657657
attributes = ('ZLIB_VERSION', 'ZLIB_RUNTIME_VERSION', 'ZLIBNG_VERSION')
658658
copy_attributes(info_add, zlib, 'zlib.%s', attributes)
659659

660+
660661
def collect_zstd(info_add):
661662
try:
662663
import _zstd
663664
except ImportError:
664665
return
665666

666667
attributes = ('zstd_version',)
667-
668668
copy_attributes(info_add, _zstd, 'zstd.%s', attributes)
669669

670+
670671
def collect_expat(info_add):
671672
try:
672673
from xml.parsers import expat

0 commit comments

Comments
 (0)