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
We have a small set of PendingDeprecationWarning in our source code now:
PendingDeprecationWarning
core.playback.play()
core.tracklist.eot_track()
tracklist.get_eot_tlid()
core.tracklist.next_track()
tracklist.get_next_tlid()
core.tracklist.previous_track()
tracklist.get_previous_tlid()
Before the release of 3.0, we should consider upgrading all of these to DeprecationWarning, so that they can be removed in 4.0.
DeprecationWarning
The text was updated successfully, but these errors were encountered:
Please see PR #1786.
Sorry, something went wrong.
Fixed by #1854 .
hugovk
No branches or pull requests
We have a small set of
PendingDeprecationWarning
in our source code now:core.playback.play()
with "tl_track" argument is pending deprecation, use "tlid" insteadcore.tracklist.eot_track()
is pending deprecation, usetracklist.get_eot_tlid()
core.tracklist.next_track()
is pending deprecation, usetracklist.get_next_tlid()
core.tracklist.previous_track()
is pending deprecation, usetracklist.get_previous_tlid()
Before the release of 3.0, we should consider upgrading all of these to
DeprecationWarning
, so that they can be removed in 4.0.The text was updated successfully, but these errors were encountered: