Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
re6stnet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
re6stnet
Commits
b4214405
Commit
b4214405
authored
8 months ago
by
Tom Niget
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2to3: migrate setup.py
parent
eb2536cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
setup.py
setup.py
+6
-3
No files found.
setup.py
View file @
b4214405
...
...
@@ -15,7 +15,7 @@ def copy_file(self, infile, outfile, *args, **kw):
if
infile
==
version
[
"__file__"
]:
if
not
self
.
dry_run
:
log
.
info
(
"generating %s -> %s"
,
infile
,
outfile
)
with
open
(
outfile
,
"w"
,
encoding
=
"utf-8"
)
as
f
:
with
open
(
outfile
,
"w"
)
as
f
:
for
x
in
sorted
(
version
.
items
()):
if
not
x
[
0
].
startswith
(
"_"
):
f
.
write
(
"%s = %r
\
n
"
%
x
)
...
...
@@ -33,8 +33,11 @@ def copy_file(self, infile, outfile, *args, **kw):
executable
=
self
.
distribution
.
command_obj
[
'build'
].
executable
patched
=
"#!%s%s
\
n
"
%
(
executable
,
m
.
group
(
1
)
or
''
)
patched
+=
src
.
read
()
with
open
(
outfile
,
"w"
)
as
dst
:
dst
.
write
(
patched
)
dst
=
os
.
open
(
outfile
,
os
.
O_CREAT
|
os
.
O_WRONLY
|
os
.
O_TRUNC
)
try
:
os
.
write
(
dst
,
patched
.
encode
())
finally
:
os
.
close
(
dst
)
return
outfile
,
1
cls
,
=
self
.
__class__
.
__bases__
return
cls
.
copy_file
(
self
,
infile
,
outfile
,
*
args
,
**
kw
)
...
...
This diff is collapsed.
Click to expand it.
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