Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
jflow
Commits
68275276
Commit
68275276
authored
Sep 28, 2015
by
Frédéric Escudié
Browse files
Add python3.2 management.
parent
3350d1af
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jflow/workflow.py
View file @
68275276
...
...
@@ -594,7 +594,10 @@ class Workflow(threading.Thread):
"""
odict
=
self
.
__dict__
.
copy
()
del
odict
[
'_started'
]
del
odict
[
'_tstate_lock'
]
if
'_tstate_lock'
in
odict
:
# python 3.4
del
odict
[
'_tstate_lock'
]
else
:
# python 3.2
del
odict
[
'_block'
]
del
odict
[
'_stderr'
]
if
'external_components'
in
odict
:
del
odict
[
'external_components'
]
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment