Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
gridtk
Commits
c978c477
Commit
c978c477
authored
Aug 16, 2013
by
André Anjos
💬
Browse files
[python3] Use pickle instead of cPickle in Python3 (bis)
parent
63227f32
Changes
1
Hide whitespace changes
Inline
Side-by-side
gridtk/local.py
View file @
c978c477
...
...
@@ -12,7 +12,10 @@ import subprocess
import
time
import
copy
,
os
,
sys
from
cPickle
import
dumps
,
loads
if
sys
.
version_info
[
0
]
>=
3
:
from
pickle
import
dumps
,
loads
else
:
from
cPickle
import
dumps
,
loads
from
.tools
import
makedirs_safe
,
logger
...
...
Write
Preview
Supports
Markdown
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