Renamed path.cat to path.join.

This commit is contained in:
Guido van Rossum 1991-07-01 18:22:34 +00:00
parent c3f2a3bf93
commit 9c5c80824c
3 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ def visit(pattern, dirname, names):
print 'descend into', dirname
n = len(pattern)
for name in names:
name = path.cat(dirname, name)
name = path.join(dirname, name)
try:
linkto = posix.readlink(name)
if linkto[:n] = pattern:

View File

@ -9,7 +9,7 @@ import posix
import path
from stat import *
cat = path.cat
join = path.join
error = 'mkreal error'
@ -37,11 +37,11 @@ def mkrealdir(name):
posix.unlink(name)
posix.mkdir(name, mode)
posix.chmod(name, mode)
linkto = cat('..', linkto)
linkto = join('..', linkto)
#
for file in files:
if file not in ('.', '..'):
posix.symlink(cat(linkto, file), cat(name, file))
posix.symlink(join(linkto, file), join(name, file))
def main():
sys.stdout = sys.stderr

View File

@ -16,7 +16,7 @@ sts = 0
for prog in sys.argv[1:]:
ident = ()
for dir in pathlist:
file = path.cat(dir, prog)
file = path.join(dir, prog)
try:
st = posix.stat(file)
if S_ISREG(st[ST_MODE]):