Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update _decimal tests formathelper.py
Replace distutils.spawn.find_executable() with shutil.which().
  • Loading branch information
vstinner committed May 9, 2022
commit 7a91966caa4e32b327f48f4b708c69da97f59d97
4 changes: 2 additions & 2 deletions Modules/_decimal/tests/formathelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import os, sys, locale, random
import platform, subprocess
from test.support.import_helper import import_fresh_module
from distutils.spawn import find_executable
from shutil import which

C = import_fresh_module('decimal', fresh=['_decimal'])
P = import_fresh_module('decimal', blocked=['_decimal'])
Expand Down Expand Up @@ -139,7 +139,7 @@
with open("/var/lib/locales/supported.d/local") as f:
locale_list = [loc.split()[0] for loc in f.readlines() \
if not loc.startswith('#')]
elif find_executable('locale'):
elif which('locale'):
locale_list = subprocess.Popen(["locale", "-a"],
stdout=subprocess.PIPE).communicate()[0]
try:
Expand Down