From de0b962998af69dff474ec99b7627bcee496d48e Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 19 Nov 2012 00:59:39 +0100 Subject: Remove sys.platform == 'riscos' checks from some Python and test files. #16501 --- Lib/sysconfig.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/sysconfig.py') diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index e06e82a89f..295a0a6ecd 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -191,7 +191,6 @@ def _getuserbase(): def joinuser(*args): return os.path.expanduser(os.path.join(*args)) - # what about 'riscos' ? if os.name == "nt": base = os.environ.get("APPDATA") or "~" if env_base: -- cgit v1.2.1