summaryrefslogtreecommitdiff
path: root/Lib/plat-riscos
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-15 22:12:47 +0000
committerTim Peters <tim.peters@gmail.com>2001-12-15 22:12:47 +0000
commit317d606f49a6de414055691891c4d005349fd948 (patch)
treef8c1f0506186909ae7f02121ae5e4299863f82fb /Lib/plat-riscos
parent52c2a21e8d4a41ca752389e0051b510583874362 (diff)
downloadcpython-317d606f49a6de414055691891c4d005349fd948.tar.gz
SF patch 493739 2 Bugfixes for 2.2c1 (RISC OS specific), from
Dietmar Schwertberger. Bugfix candidate. """ RISCOS/Modules/getpath_riscos.c: Include trailing '\0' when using strncpy [copy strlen(...)+1 characters]. Lib/plat-riscos/riscospath.py: Use riscosmodule.expand for os.path.abspath. [fixes problems with site.py where abspath("<Python$Dir>") returned join(os.getcwd(), "<Python$Dir>") as e.g. "SCSI::SCSI4.$.<Python$Dir>" because "<Python$Dir>" wasn't recognised as an absolute path.] """
Diffstat (limited to 'Lib/plat-riscos')
-rw-r--r--Lib/plat-riscos/riscospath.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/plat-riscos/riscospath.py b/Lib/plat-riscos/riscospath.py
index fb0e477e76..30c0c9fe51 100644
--- a/Lib/plat-riscos/riscospath.py
+++ b/Lib/plat-riscos/riscospath.py
@@ -311,10 +311,8 @@ def expandvars(p):
return b.tostring(0, swi.swi('OS_GSTrans', 'sbi;..i', p, b, l))
-# Return an absolute path.
-
-def abspath(p):
- return normpath(join(os.getcwd(), p))
+# Return an absolute path. RISC OS' osfscontrol_canonicalise_path does this among others
+abspath = os.expand
# realpath is a no-op on systems without islink support