mirror of
https://github.com/python/cpython.git
synced 2025-11-26 13:22:51 +00:00
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.]
"""
This commit is contained in:
parent
c57772870b
commit
1422e9dc60
2 changed files with 3 additions and 5 deletions
|
|
@ -311,10 +311,8 @@ def expandvars(p):
|
||||||
return b.tostring(0, swi.swi('OS_GSTrans', 'sbi;..i', p, b, l))
|
return b.tostring(0, swi.swi('OS_GSTrans', 'sbi;..i', p, b, l))
|
||||||
|
|
||||||
|
|
||||||
# Return an absolute path.
|
# Return an absolute path. RISC OS' osfscontrol_canonicalise_path does this among others
|
||||||
|
abspath = os.expand
|
||||||
def abspath(p):
|
|
||||||
return normpath(join(os.getcwd(), p))
|
|
||||||
|
|
||||||
|
|
||||||
# realpath is a no-op on systems without islink support
|
# realpath is a no-op on systems without islink support
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ calculate_path()
|
||||||
int pathlen = strlen(pypath);
|
int pathlen = strlen(pypath);
|
||||||
module_search_path = malloc(pathlen + 1);
|
module_search_path = malloc(pathlen + 1);
|
||||||
if (module_search_path)
|
if (module_search_path)
|
||||||
strncpy(module_search_path, pypath, pathlen);
|
strncpy(module_search_path, pypath, pathlen + 1);
|
||||||
else {
|
else {
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Not enough memory for dynamic PYTHONPATH.\n"
|
"Not enough memory for dynamic PYTHONPATH.\n"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue