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
db86e6f7
Commit
db86e6f7
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Python 2/3 issues with memoize and unicode should be sorted
parent
482924ac
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/memoize.py
+11
-4
11 additions, 4 deletions
fsl/utils/memoize.py
with
11 additions
and
4 deletions
fsl/utils/memoize.py
+
11
−
4
View file @
db86e6f7
...
...
@@ -55,14 +55,14 @@ def memoize(func):
try
:
result
=
cache
[
key
]
log
.
debug
(
'
Retrieved from cache[{}]: {}
'
.
format
(
key
,
result
))
log
.
debug
(
u
'
Retrieved from cache[{}]: {}
'
.
format
(
key
,
result
))
except
KeyError
:
result
=
func
(
*
a
,
**
kwa
)
cache
[
key
]
=
result
log
.
debug
(
'
Adding to cache[{}]: {}
'
.
format
(
key
,
result
))
log
.
debug
(
u
'
Adding to cache[{}]: {}
'
.
format
(
key
,
result
))
return
result
return
wrapper
...
...
@@ -82,8 +82,15 @@ def memoizeMD5(func):
hashobj
=
hashlib
.
md5
()
# Convert each arg to a string
# representation, then encode
# it into a sequence of (utf-8
# compatible) bytes , and take
# the hash of those bytes.
for
arg
in
args
:
arg
=
six
.
u
(
str
(
arg
)).
encode
(
'
utf-8
'
)
if
not
isinstance
(
arg
,
six
.
string_types
):
arg
=
str
(
arg
)
arg
=
arg
.
encode
(
'
utf-8
'
)
hashobj
.
update
(
arg
)
digest
=
hashobj
.
hexdigest
()
...
...
@@ -94,7 +101,7 @@ def memoizeMD5(func):
result
=
func
(
*
args
,
**
kwargs
)
log
.
debug
(
'
Adding to MD5 cache[{}]: {}
'
.
format
(
log
.
debug
(
u
'
Adding to MD5 cache[{}]: {}
'
.
format
(
digest
,
result
))
cache
[
digest
]
=
result
...
...
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