Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some issues with make_dirty #15

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

nheir
Copy link
Contributor

@nheir nheir commented Jul 11, 2019

basically, this doesn't assume the key traversal is ordered in dirty

on test:

  • make_dirty([[1,2,3]], dirty={(0,0):0, (0,1):0}) with cellzero=0
    the expected result is [[3]] (but was [[2]] because it starts
    removing 1 in [1,2,3], then 3 in [2,3], instead of removing
    1 and 2 in [1,2,3]

additionaly, it use a default cellzero value (to None)

on test:
 - make_dirty([[1,2,3]], dirty={(0,0):0, (0,1):0}) with cellzero=0
	the expected result is [[3]] (but was [[2]] because it starts
	removing 1 in [1,2,3], then 3 in [2,3], instead of removing
	1 and 2 in [1,2,3]
 - same test with non zero cell

basically, this doesn't assume the key traversal is ordered in dirty

additionaly, it use a default cellzero value (to `None`)

remove cellzero default value
@zerline zerline force-pushed the develop branch 2 times, most recently from 7420ca5 to 7622ec1 Compare October 25, 2019 12:22
@zerline zerline force-pushed the develop branch 4 times, most recently from 2d5ad02 to b9720f1 Compare January 1, 2020 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant