René's URL Explorer Experiment


Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib · GitHub

Open Graph Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib

X Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib

Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of sense, because the behaviour of the "buil...

Open Graph Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s...

X Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/21929

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[MNT]: Deprecate `onselect`/`onmove_callback` of selectors","articleBody":"### Summary\n\nIf I remember correctly, at some point, @anntzer suggested to deprecate `onselect` argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of sense, because the behaviour of the \"builtin\" selector callback is contentious and inconsistent between selectors.\r\n\n\n### Proposed fix\n\n\r\nThe alternative would be something along the lines of:\r\n```python\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.widgets import RectangleSelector\r\nimport functools\r\n\r\n_, ax = plt.subplots()\r\nax.plot([1, 2, 3])\r\n\r\n\r\ndef dummy_callback(*args):\r\n    pass\r\n\r\n\r\ndef onselect_callback(event, selector):\r\n    print('## onselect callback ##')\r\n    if not selector.ignore(event):\r\n        print('   ', selector.extents)\r\n        return\r\n    print('   event ignored')\r\n\r\n\r\ndef onmove_callback(event, selector):\r\n    print('## onmove callback ##')\r\n    if not selector.ignore(event) and selector._eventpress:\r\n        print('   ', selector.extents)\r\n        return\r\n    print('   event ignored')\r\n\r\n\r\ntool = RectangleSelector(ax, dummy_callback, interactive=True,\r\n                         drag_from_anywhere=True,)\r\ntool.extents = (1.2, 2.0, 1.0, 1.6)\r\n\r\n# alternative to onselect\r\nrectangle_onselect_callback = functools.partial(onselect_callback, selector=tool)\r\ntool.connect_event('button_release_event', rectangle_onselect_callback)\r\n\r\n# alternative to onmove_callback (SpanSelector only)\r\nrectangle_onmove_callback = functools.partial(onmove_callback, selector=tool)\r\ntool.connect_event('motion_notify_event', rectangle_onmove_callback)\r\n\r\n```\r\n\r\nIn my opinion, the reasons to deprecate are:\r\n- provide consistent API between selectors\r\n- leave the user define what is the expected behaviour - anyway, I don't think the current API is obvious to use\r\n- fix https://github.com/matplotlib/matplotlib/issues/9608 (see #20611 for more discussion)\r\n- simplify maintenance\r\n\r\nProposed fix:\r\n- Deprecate the `onselect`/`onmove` arguments of the selectors, as per example above\r\n- improve the API to ignore events (the example above uses a private API to reproduce the `onmove_callback` of the `SpanSelector`)\r\n- update example, improve documentation on the use of callback registry.","author":{"url":"https://github.com/ericpre","@type":"Person","name":"ericpre"},"datePublished":"2021-12-11T12:49:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/21929/matplotlib/issues/21929"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:02cb1668-3503-8983-58df-a054d67c5111
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA0EC:118815:28F6EB2:3A54A39:6A51051C
html-safe-noncedd83fed9fcda50b12b381bfaf000a5e1e8da3412bbcf137019a8620450f7b280
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMEVDOjExODgxNToyOEY2RUIyOjNBNTRBMzk6NkE1MTA1MUMiLCJ2aXNpdG9yX2lkIjoiNjY5MzE0MjUxNzQ5NDM4MzkwMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacd5a8f788c99c8c4ce8a62ee1eefc0803abbaba72d6a0a97d56a99bbd1316e0eb
hovercard-subject-tagissue:1077528917
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/21929/issue_layout
twitter:imagehttps://opengraph.githubassets.com/67edb7e1a654ea78eb610c0363f77cccd046b3287ac868b76373abe7d1ee13b4/matplotlib/matplotlib/issues/21929
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/67edb7e1a654ea78eb610c0363f77cccd046b3287ac868b76373abe7d1ee13b4/matplotlib/matplotlib/issues/21929
og:image:altSummary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameericpre
hostnamegithub.com
expected-hostnamegithub.com
None38906a4da4e3e9fd88dfeacee232f5932c0c5f7495de3b4efc53ddfac7173d12
turbo-cache-controlno-preview
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
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release90441ea9b98e7491aa6ebcd135fccce4e2396f48
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/21929#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F21929
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%2Fissues%2F21929
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/21929
Reloadhttps://github.com/matplotlib/matplotlib/issues/21929
Reloadhttps://github.com/matplotlib/matplotlib/issues/21929
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/21929
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/21929
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 410 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
#26000https://github.com/matplotlib/matplotlib/pull/26000
[MNT]: Deprecate onselect/onmove_callback of selectorshttps://github.com/matplotlib/matplotlib/issues/21929#top
#26000https://github.com/matplotlib/matplotlib/pull/26000
Maintenancehttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Maintenance%22
topic: widgets/UIhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20widgets%2FUI%22
https://github.com/ericpre
ericprehttps://github.com/ericpre
on Dec 11, 2021https://github.com/matplotlib/matplotlib/issues/21929#issue-1077528917
@anntzerhttps://github.com/anntzer
Widgets: RectangleSelector in Mpl 2.1.0 does not behave as described #9608https://github.com/matplotlib/matplotlib/issues/9608
Fix for #9608: RectangleSelector now reports mouse button press and release events correctly #20611https://github.com/matplotlib/matplotlib/pull/20611
Maintenancehttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Maintenance%22
topic: widgets/UIhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20widgets%2FUI%22
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.