René's URL Explorer Experiment


Title: Avoid timer drift during long callbacks by greglucas · Pull Request #29023 · matplotlib/matplotlib · GitHub

Open Graph Title: Avoid timer drift during long callbacks by greglucas · Pull Request #29023 · matplotlib/matplotlib

X Title: Avoid timer drift during long callbacks by greglucas · Pull Request #29023 · matplotlib/matplotlib

Description: PR summary Updating the interval or single_shot attributes of a timer would call the underlying timer update functions regardless of if a new value was present or not. This caused issues in animations that set the interval to the same value in each iteration of the loop and when a long-running function was taking place this would cause the timers to drift. Note that even with the interval/single_shot updates, Tk was still drifting so we need to update that repeating timer code to avoid the time it takes within the callback itself. ping @richardsheridan for thoughts/suggestions on the Tk updates. closes #28647 alternative to #28997 Example to test with from the main issue. All backends before this produced ~300ms, all backends produce ~200ms after these updates for me. import matplotlib.pyplot as plt import numpy as np from matplotlib import animation def update(frame): if len(frame) < 2: return [] diff = np.diff(frame) avg.set_text(avg_txt.format(diff.mean()*1e3)) cur.set_text(cur_txt.format(diff[-1]*1e3)) return [avg, cur] def frame(): times = deque(maxlen=100) while True: time.sleep(0.1) times.append(time.perf_counter()) yield times fig, ax = plt.subplots(figsize=(1,1)) ax.axis('off') avg_txt = 'avg: {:.3g} ms' cur_txt = 'cur: {:.3g} ms' avg = ax.text(0.5, 0.75, avg_txt.format(0), va='center', ha='center') cur = ax.text(0.5, 0.25, cur_txt.format(0), va='center', ha='center') anim = animation.FuncAnimation(fig, update, frame, repeat=False, cache_frame_data=False, interval=200) PR checklist "closes #0000" is in the body of the PR description to link the related issue new and changed code is tested [n/a] Plotting related features are demonstrated in an example [n/a] New Features and API Changes are noted with a directive and release note [n/a] Documentation complies with general and docstring guidelines

Open Graph Description: PR summary Updating the interval or single_shot attributes of a timer would call the underlying timer update functions regardless of if a new value was present or not. This caused issues in animati...

X Description: PR summary Updating the interval or single_shot attributes of a timer would call the underlying timer update functions regardless of if a new value was present or not. This caused issues in animati...

Opengraph URL: https://github.com/matplotlib/matplotlib/pull/29023

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:38acd5ca-617d-9374-92a6-9fce77bde4b7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC42C:24C7F8:770A30:A67914:6A538BCB
html-safe-nonce77b6c340c26095c064663d31490e6af2144a023ddcfb19bb783bec879e6f69d5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNDJDOjI0QzdGODo3NzBBMzA6QTY3OTE0OjZBNTM4QkNCIiwidmlzaXRvcl9pZCI6IjI0MjQ1ODgxMjM2MDg2ODE0MTkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac22d432c9f415e08d7410b4a113611370e2ac605e0c8f0527cf187cd92f7c2bb3
hovercard-subject-tagpull_request:2146406870
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/matplotlib/matplotlib/pull/29023/files
twitter:imagehttps://avatars.githubusercontent.com/u/12417828?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/12417828?s=400&v=4
og:image:altPR summary Updating the interval or single_shot attributes of a timer would call the underlying timer update functions regardless of if a new value was present or not. This caused issues in animati...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/pull/29023/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F29023%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F29023%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/pull/29023/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/29023/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/29023/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/29023/files
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/29023/files
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 408 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
greglucashttps://github.com/greglucas
matplotlib:mainhttps://github.com/matplotlib/matplotlib/tree/main
greglucas:timer-interval-resethttps://github.com/greglucas/matplotlib/tree/timer-interval-reset
Conversation 7 https://github.com/matplotlib/matplotlib/pull/29023
Commits 4 https://github.com/matplotlib/matplotlib/pull/29023/commits
Checks 0 https://github.com/matplotlib/matplotlib/pull/29023/checks
Files changed 4 https://github.com/matplotlib/matplotlib/pull/29023/files
Avoid timer drift during long callbacks https://github.com/matplotlib/matplotlib/pull/29023/files#top
Show all changes 4 commits https://github.com/matplotlib/matplotlib/pull/29023/files
5bdd545 FIX: Only call timer updates when things change on the timer greglucas Oct 25, 2024 https://github.com/matplotlib/matplotlib/pull/29023/commits/5bdd545e0560885e2206c6d4535c434067e7ef6a
9c8300d FIX: Avoid drift in Tk's repeating timer greglucas Oct 25, 2024 https://github.com/matplotlib/matplotlib/pull/29023/commits/9c8300d5790fd85fbff1351bd39c8712dd90e2ec
9d7343c TST: Add test for timer drift in interactive backends greglucas Oct 25, 2024 https://github.com/matplotlib/matplotlib/pull/29023/commits/9d7343cc13d76cc3798f460814da41e946f733e8
2be06d4 TST: Add backend bases test greglucas Oct 25, 2024 https://github.com/matplotlib/matplotlib/pull/29023/commits/2be06d425e283c0d244324a4fcbc1b0abbbd822d
Clear filters https://github.com/matplotlib/matplotlib/pull/29023/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/29023/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/29023/files
backend_bases.py https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
_backend_tk.py https://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
test_backend_bases.py https://github.com/matplotlib/matplotlib/pull/29023/files#diff-4bb8aa987dcf84bbe0a0f621a439f2e21bd78d409dcc8d90c2b465f78139b6ff
test_backends_interactive.py https://github.com/matplotlib/matplotlib/pull/29023/files#diff-b5dab748133c9dd713a6516d6a45072cedb7b587dfa23d57838d7ed17fe5283d
lib/matplotlib/backend_bases.pyhttps://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
View file https://github.com/greglucas/matplotlib/blob/2be06d425e283c0d244324a4fcbc1b0abbbd822d/lib/matplotlib/backend_bases.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/29023/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
lib/matplotlib/backends/_backend_tk.pyhttps://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
View file https://github.com/greglucas/matplotlib/blob/2be06d425e283c0d244324a4fcbc1b0abbbd822d/lib/matplotlib/backends/_backend_tk.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/29023/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-0fcc17e00b4190b5c5d3fe025742c63fb70ffbd8bc9fc4fdee43064b8bc27e81
lib/matplotlib/tests/test_backend_bases.pyhttps://github.com/matplotlib/matplotlib/pull/29023/files#diff-4bb8aa987dcf84bbe0a0f621a439f2e21bd78d409dcc8d90c2b465f78139b6ff
View file https://github.com/greglucas/matplotlib/blob/2be06d425e283c0d244324a4fcbc1b0abbbd822d/lib/matplotlib/tests/test_backend_bases.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/29023/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-4bb8aa987dcf84bbe0a0f621a439f2e21bd78d409dcc8d90c2b465f78139b6ff
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-4bb8aa987dcf84bbe0a0f621a439f2e21bd78d409dcc8d90c2b465f78139b6ff
lib/matplotlib/tests/test_backends_interactive.pyhttps://github.com/matplotlib/matplotlib/pull/29023/files#diff-b5dab748133c9dd713a6516d6a45072cedb7b587dfa23d57838d7ed17fe5283d
View file https://github.com/greglucas/matplotlib/blob/2be06d425e283c0d244324a4fcbc1b0abbbd822d/lib/matplotlib/tests/test_backends_interactive.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/29023/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-b5dab748133c9dd713a6516d6a45072cedb7b587dfa23d57838d7ed17fe5283d
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-b5dab748133c9dd713a6516d6a45072cedb7b587dfa23d57838d7ed17fe5283d
https://github.com/matplotlib/matplotlib/pull/29023/files#diff-b5dab748133c9dd713a6516d6a45072cedb7b587dfa23d57838d7ed17fe5283d
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.