summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/util.py
diff options
context:
space:
mode:
authorMalcolm Smith <smith@chaquo.com>2024-03-11 19:25:39 (GMT)
committerGitHub <noreply@github.com>2024-03-11 19:25:39 (GMT)
commit872c0714fcdc168ce4a69bdd0346f2d5dd488ec2 (patch)
tree84934c17e5561cc36d337d83b436fcc5bb40fd88 /Lib/multiprocessing/util.py
parent9f983e00ec55b87a098a4c8229fe5bb9acb9f3ac (diff)
downloadcpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.zip
cpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.tar.gz
cpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.tar.bz2
gh-71052: Change Android's `sys.platform` from "linux" to "android"
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Lib/multiprocessing/util.py')
-rw-r--r--Lib/multiprocessing/util.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/multiprocessing/util.py b/Lib/multiprocessing/util.py
index 3287185..75dde02 100644
--- a/Lib/multiprocessing/util.py
+++ b/Lib/multiprocessing/util.py
@@ -102,11 +102,7 @@ def log_to_stderr(level=None):
# Abstract socket support
def _platform_supports_abstract_sockets():
- if sys.platform == "linux":
- return True
- if hasattr(sys, 'getandroidapilevel'):
- return True
- return False
+ return sys.platform in ("linux", "android")
def is_abstract_socket_namespace(address):