Skip to content

Commit

Permalink
fix refactoring bug
Browse files Browse the repository at this point in the history
`_list_get_data` was moved and renamed to `_container_get_data`, this
bug stems from a failed rebase.
  • Loading branch information
esc committed Jun 29, 2019
1 parent a767ce9 commit 488d6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numba/listobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ def codegen(context, builder, sig, args):
fn = builder.module.get_or_insert_function(fnty,
name='numba_list_delete_slice')

lp = _list_get_data(context, builder, tl, l)
lp = _container_get_data(context, builder, tl, l)
status = builder.call(
fn,
[
Expand Down

0 comments on commit 488d6c0

Please sign in to comment.