Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
20b758c4
Commit
20b758c4
authored
4 years ago
by
Michiel Cottaar
Browse files
Options
Downloads
Patches
Plain Diff
BUG: close file handles
parent
c1580382
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/utils/fslsub.py
+4
-3
4 additions, 3 deletions
fsl/utils/fslsub.py
with
4 additions
and
3 deletions
fsl/utils/fslsub.py
+
4
−
3
View file @
20b758c4
...
@@ -495,9 +495,10 @@ def func_to_cmd(func, args=None, kwargs=None, tmp_dir=None, clean="never", verbo
...
@@ -495,9 +495,10 @@ def func_to_cmd(func, args=None, kwargs=None, tmp_dir=None, clean="never", verbo
pickle
.
dump
((
'
module
'
,
func
.
__module__
,
func
.
__name__
,
pickle
.
dump
((
'
module
'
,
func
.
__module__
,
func
.
__name__
,
args
,
kwargs
),
pickle_bytes
)
args
,
kwargs
),
pickle_bytes
)
_
,
filename
=
tempfile
.
mkstemp
(
prefix
=
func
.
__name__
+
'
_
'
,
handle
,
filename
=
tempfile
.
mkstemp
(
prefix
=
func
.
__name__
+
'
_
'
,
suffix
=
'
.py
'
,
suffix
=
'
.py
'
,
dir
=
tmp_dir
)
dir
=
tmp_dir
)
os
.
close
(
handle
)
verbose_script
=
f
'
\n
print(
"
running
{
filename
}
"
)
\n
'
if
verbose
else
''
verbose_script
=
f
'
\n
print(
"
running
{
filename
}
"
)
\n
'
if
verbose
else
''
if
clean
==
'
never
'
:
if
clean
==
'
never
'
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment