Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9a6757da
Commit
9a6757da
authored
Mar 30, 1992
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
posix -> os
parent
391b8b7d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
18 deletions
+17
-18
Tools/scripts/byteyears.py
Tools/scripts/byteyears.py
+5
-5
Tools/scripts/checkpyc.py
Tools/scripts/checkpyc.py
+7
-8
Tools/scripts/copytime.py
Tools/scripts/copytime.py
+5
-5
No files found.
Tools/scripts/byteyears.py
View file @
9a6757da
...
...
@@ -6,15 +6,15 @@
#
# Options -[amc] select atime, mtime (default) or ctime as age.
import
sys
,
posix
,
time
import
sys
,
os
,
time
import
string
from
stat
import
*
# Use lstat() to stat files if it exists, else stat()
try
:
statfunc
=
posix
.
lstat
except
Nam
eError
:
statfunc
=
posix
.
stat
statfunc
=
os
.
lstat
except
Attribut
eError
:
statfunc
=
os
.
stat
# Parse options
if
sys
.
argv
[
1
]
==
'-m'
:
...
...
@@ -42,7 +42,7 @@ for file in sys.argv[1:]:
for
file
in
sys
.
argv
[
1
:]:
try
:
st
=
statfunc
(
file
)
except
posix
.
error
,
msg
:
except
os
.
error
,
msg
:
sys
.
stderr
.
write
(
'can
\
'
t stat '
+
`file`
+
': '
+
`msg`
+
'
\
n
'
)
status
=
1
st
=
()
...
...
Tools/scripts/checkpyc.py
View file @
9a6757da
# Check that all ".pyc" files exist and are up-to-date
# Uses module '
posix
'
# Uses module '
os
'
import
sys
import
posix
import
path
import
os
from
stat
import
ST_MTIME
def
main
():
...
...
@@ -24,8 +23,8 @@ def main():
print
'Using MAGIC word'
,
`MAGIC`
for
dirname
in
sys
.
path
:
try
:
names
=
posix
.
listdir
(
dirname
)
except
posix
.
error
:
names
=
os
.
listdir
(
dirname
)
except
os
.
error
:
print
'Cannot list directory'
,
`dirname`
continue
if
not
silent
:
...
...
@@ -33,10 +32,10 @@ def main():
names
.
sort
()
for
name
in
names
:
if
name
[
-
3
:]
==
'.py'
:
name
=
path
.
join
(
dirname
,
name
)
name
=
os
.
path
.
join
(
dirname
,
name
)
try
:
st
=
posix
.
stat
(
name
)
except
posix
.
error
:
st
=
os
.
stat
(
name
)
except
os
.
error
:
print
'Cannot stat'
,
`name`
continue
if
verbose
:
...
...
Tools/scripts/copytime.py
View file @
9a6757da
...
...
@@ -3,7 +3,7 @@
# Copy one file's atime and mtime to another
import
sys
import
posix
import
os
from
stat
import
ST_ATIME
,
ST_MTIME
# Really constants 7 and 8
def
main
():
...
...
@@ -12,13 +12,13 @@ def main():
sys
.
exit
(
2
)
file1
,
file2
=
sys
.
argv
[
1
],
sys
.
argv
[
2
]
try
:
stat1
=
posix
.
stat
(
file1
)
except
posix
.
error
:
stat1
=
os
.
stat
(
file1
)
except
os
.
error
:
sys
.
stderr
.
write
(
file1
+
': cannot stat
\
n
'
)
sys
.
exit
(
1
)
try
:
posix
.
utime
(
file2
,
(
stat1
[
ST_ATIME
],
stat1
[
ST_MTIME
]))
except
posix
.
error
:
os
.
utime
(
file2
,
(
stat1
[
ST_ATIME
],
stat1
[
ST_MTIME
]))
except
os
.
error
:
sys
.
stderr
.
write
(
file2
+
': cannot change time
\
n
'
)
sys
.
exit
(
2
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment