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
FSL
funpack
Commits
0012a3d1
Commit
0012a3d1
authored
Mar 16, 2019
by
Paul McCarthy
🚵
Browse files
BF: HDFStore.select now raises an error
parent
4db256c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ukbparse/storage.py
View file @
0012a3d1
...
...
@@ -489,7 +489,11 @@ class StoreSlicer(object):
for
idx
,
colblock
in
colblocks
.
items
():
with
store
.
storeFile
(
idx
,
mode
=
'r'
)
as
s
:
for
col
in
colblock
:
series
=
s
.
select
(
col
)
try
:
series
=
s
.
select
(
col
)
except
Exception
:
series
=
None
if
series
is
None
:
series
=
self
.
__unstorable
.
get
(
col
,
None
)
results
.
append
(
series
.
loc
[
rows
])
...
...
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