-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Fix PropertyValueColumnData._stream()
to handle rollover >= len(L)
#13318
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
Conversation
@quasiben can you do a quick test with this patch? |
PropertyValueColumnData._stream()
to handle rollover >= len(data)
PropertyValueColumnData._stream()
to handle rollover > len(data)
PropertyValueColumnData._stream()
to handle rollover > len(data)
PropertyValueColumnData._stream()
to handle rollover >= len(L)
Codecov Report
@@ Coverage Diff @@
## branch-3.3 #13318 +/- ##
===========================================
Coverage 92.45% 92.45%
===========================================
Files 315 315
Lines 20150 20150
===========================================
Hits 18629 18629
Misses 1521 1521 |
Thanks @xiaoyang-sde -- locally testing verified this resolves the bug! |
Thanks for the quick turnaround @xiaoyang-sde! will merge now and backport for a 3.2.2 in the next few days |
#13318) * Fix PropertyValueColumnData._stream() to handle rollover >= len(data) * Clean implementation
#13318) * Fix PropertyValueColumnData._stream() to handle rollover >= len(data) * Clean implementation
bokeh#13318) * Fix PropertyValueColumnData._stream() to handle rollover >= len(data) * Clean implementation
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
fixes #13314
If
rollover >= len(L)
, there's no need to delete items fromL
.