Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
80be16cf
Commit
80be16cf
authored
Feb 26, 2009
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create new c file to play better with hard links (Trac #220)
parent
c1fa679b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Cython/Utils.py
Cython/Utils.py
+7
-7
No files found.
Cython/Utils.py
View file @
80be16cf
...
...
@@ -10,22 +10,22 @@ def replace_suffix(path, newsuf):
return
base
+
newsuf
def
open_new_file
(
path
):
# Open and truncate existing file to
# preserve metadata on the Mac.
return
open
(
path
,
"w+"
)
if
os
.
path
.
exists
(
path
):
# Make sure to create a new file here so we can
# safely hard link the output files.
os
.
unlink
(
path
)
return
open
(
path
,
"w"
)
def
castrate_file
(
path
,
st
):
# Remove junk contents from an output file after a
# failed compilation
, but preserve metadata on Mac
.
# failed compilation.
# Also sets access and modification times back to
# those specified by st (a stat struct).
try
:
f
=
open
(
path
,
"r+"
)
f
=
open
_new_file
(
path
)
except
EnvironmentError
:
pass
else
:
f
.
seek
(
0
,
0
)
f
.
truncate
()
f
.
write
(
"#error Do not use this file, it is the result of a failed Cython compilation.
\
n
"
)
f
.
close
()
...
...
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