summaryrefslogtreecommitdiffstats
path: root/Demo/scripts
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-30 11:12:23 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-30 11:12:23 (GMT)
commitb2ac8092a8f32de529675e14f3ba5c1f6ef06737 (patch)
tree4ebf68e929431e5787b5b1a3b1de3c4c8722c501 /Demo/scripts
parent4ea570d97245c0580743a8d1e7ea351cf2c1f459 (diff)
downloadcpython-b2ac8092a8f32de529675e14f3ba5c1f6ef06737.zip
cpython-b2ac8092a8f32de529675e14f3ba5c1f6ef06737.tar.gz
cpython-b2ac8092a8f32de529675e14f3ba5c1f6ef06737.tar.bz2
change posix to os and path to os.path
Diffstat (limited to 'Demo/scripts')
-rwxr-xr-xDemo/scripts/eqfix.py37
1 files changed, 18 insertions, 19 deletions
diff --git a/Demo/scripts/eqfix.py b/Demo/scripts/eqfix.py
index b96abf4..49e3704 100755
--- a/Demo/scripts/eqfix.py
+++ b/Demo/scripts/eqfix.py
@@ -31,8 +31,7 @@
import sys
import regex
-import posix
-import path
+import os
from stat import *
import string
@@ -46,9 +45,9 @@ def main():
err('usage: ' + argv[0] + ' file-or-directory ...\n')
sys.exit(2)
for arg in sys.argv[1:]:
- if path.isdir(arg):
+ if os.path.isdir(arg):
if recursedown(arg): bad = 1
- elif path.islink(arg):
+ elif os.path.islink(arg):
err(arg + ': will not process symbolic links\n')
bad = 1
else:
@@ -63,17 +62,17 @@ def recursedown(dirname):
dbg('recursedown(' + `dirname` + ')\n')
bad = 0
try:
- names = posix.listdir(dirname)
- except posix.error, msg:
+ names = os.listdir(dirname)
+ except os.error, msg:
err(dirname + ': cannot list directory: ' + `msg` + '\n')
return 1
names.sort()
subdirs = []
for name in names:
- if name in ('.', '..'): continue
- fullname = path.join(dirname, name)
- if path.islink(fullname): pass
- elif path.isdir(fullname):
+ if name in (os.curdir, os.pardir): continue
+ fullname = os.path.join(dirname, name)
+ if os.path.islink(fullname): pass
+ elif os.path.isdir(fullname):
subdirs.append(fullname)
elif ispython(name):
if fix(fullname): bad = 1
@@ -88,8 +87,8 @@ def fix(filename):
except IOError, msg:
err(filename + ': cannot open: ' + `msg` + '\n')
return 1
- head, tail = path.split(filename)
- tempname = path.join(head, '@' + tail)
+ head, tail = os.path.split(filename)
+ tempname = os.path.join(head, '@' + tail)
g = None
# If we find a match, we rewind the file and start over but
# now copy everything to a temp file.
@@ -145,19 +144,19 @@ def fix(filename):
# First copy the file's mode to the temp file
try:
- statbuf = posix.stat(filename)
- posix.chmod(tempname, statbuf[ST_MODE] & 07777)
- except posix.error, msg:
+ statbuf = os.stat(filename)
+ os.chmod(tempname, statbuf[ST_MODE] & 07777)
+ except os.error, msg:
err(tempname + ': warning: chmod failed (' + `msg` + ')\n')
# Then make a backup of the original file as filename~
try:
- posix.rename(filename, filename + '~')
- except posix.error, msg:
+ os.rename(filename, filename + '~')
+ except os.error, msg:
err(filename + ': warning: backup failed (' + `msg` + ')\n')
# Now move the temp file to the original file
try:
- posix.rename(tempname, filename)
- except posix.error, msg:
+ os.rename(tempname, filename)
+ except os.error, msg:
err(filename + ': rename failed (' + `msg` + ')\n')
return 1
# Return succes