We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89898a6 commit 31ad407Copy full SHA for 31ad407
pandas/_config/localization.py
@@ -10,7 +10,6 @@
10
import locale
11
import platform
12
import re
13
-import subprocess
14
from typing import (
15
TYPE_CHECKING,
16
cast,
@@ -142,7 +141,8 @@ def get_locales(
142
141
143
"""
144
if platform.system() in ("Linux", "Darwin"):
145
- raw_locales = subprocess.check_output(["locale", "-a"])
+ # raw_locales = subprocess.check_output(["locale", "-a"])
+ raw_locales = []
146
else:
147
# Other platforms e.g. windows platforms don't define "locale -a"
148
# Note: is_platform_windows causes circular import here
0 commit comments