Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
e3f11c25
Commit
e3f11c25
authored
May 20, 2020
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix redo_pyc for Python 3
parent
16ed0283
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
easy_install.py
src/zc/buildout/easy_install.py
+17
-6
No files found.
src/zc/buildout/easy_install.py
View file @
e3f11c25
...
...
@@ -1692,20 +1692,31 @@ def redo_pyc(egg):
chmod
(
dirpath
)
for
filename
in
filenames
:
filepath
=
os
.
path
.
join
(
dirpath
,
filename
)
chmod
(
filepath
)
try
:
chmod
(
filepath
)
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
continue
if
not
filename
.
endswith
(
'.py'
):
continue
if
not
(
os
.
path
.
exists
(
filepath
+
'c'
)
or
os
.
path
.
exists
(
filepath
+
'o'
)):
old
=
[]
pycache
=
os
.
path
.
join
(
dirpath
,
'__pycache__'
,
filename
[:
-
3
]
+
'.*.py'
)
for
suffix
in
'co'
:
if
os
.
path
.
exists
(
filepath
+
suffix
):
old
.
append
(
filepath
+
suffix
)
old
+=
glob
.
glob
(
pycache
+
suffix
)
if
not
old
:
# If it wasn't compiled, it may not be compilable
continue
# OK, it looks like we should try to compile.
# Remove old files.
for
suffix
in
'co'
:
if
os
.
path
.
exists
(
filepath
+
suffix
):
os
.
remove
(
filepath
+
suffix
)
for
old
in
old
:
os
.
remove
(
old
)
# Compile under current optimization
try
:
...
...
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