Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dios
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RDM
dios
Commits
a6a9d4b5
Commit
a6a9d4b5
authored
5 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
minor bug fix, and test fix
parent
223b8d8b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dios/indexer.py
+3
-3
3 additions, 3 deletions
dios/indexer.py
test/test__setget__loc.py
+0
-1
0 additions, 1 deletion
test/test__setget__loc.py
with
3 additions
and
4 deletions
dios/indexer.py
+
3
−
3
View file @
a6a9d4b5
...
...
@@ -66,7 +66,7 @@ class _Indexer:
raise
KeyError
(
rowkey
)
else
:
# cannot set to empty series
if
len
(
dat
.
i
loc
[
rowkey
])
==
0
:
if
len
(
dat
_x
loc
[
rowkey
])
==
0
:
continue
dat_xloc
[
rowkey
]
=
val
...
...
@@ -254,9 +254,9 @@ class _aLocIndexer(_Indexer):
return
self
def
__getitem__
(
self
,
key
):
# currently lowdim from the next call is
# not used, so we always return a dios
rowkeys
,
colkeys
,
_
=
self
.
_unpack_key_aloc
(
key
)
# currently lowdim is not used and we always
# return a dios
data
=
pd
.
Series
(
dtype
=
'
O
'
,
index
=
colkeys
)
kws
=
dict
(
itype
=
self
.
obj
.
itype
,
cast_policy
=
self
.
obj
.
_policy
)
...
...
This diff is collapsed.
Click to expand it.
test/test__setget__loc.py
+
0
−
1
View file @
a6a9d4b5
...
...
@@ -36,7 +36,6 @@ def test__setitem_loc_singleCol(dios_aligned, idxer, exp):
VALS
=
[
99
,
pd
.
Series
(
range
(
4
,
10
),
index
=
range
(
4
,
10
)),
]
...
...
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