René's URL Explorer Experiment


Title: ENH: make mouse over behavior configurable by tacaswell · Pull Request #4847 · matplotlib/matplotlib · GitHub

Open Graph Title: ENH: make mouse over behavior configurable by tacaswell · Pull Request #4847 · matplotlib/matplotlib

X Title: ENH: make mouse over behavior configurable by tacaswell · Pull Request #4847 · matplotlib/matplotlib

Description: The mouse-over behavior to add a string to the message line can quickly become too expensive to compute the hit list in the time between mouse move events (particularly in the nbagg and qt5agg backends) when the number of artists gets large. This adds: a flag on the Axes objects to control if the hitlist should be computed an rcparam to control it @blink1073 import matplotlib.backend_bases as mbb fig, ax = plt.subplots() for j in range(150): ax.plot(j + np.sin(np.arange(0, 5000))) # fake mouse event ev = mbb.MouseEvent('motion_notify_event', fig.canvas, 150, 150) ev.inaxes = ax ax.mouseover = True %prun ax.figure.canvas.manager.toolbar.mouse_move(ev) 17104 function calls (16654 primitive calls) in 0.038 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 166 0.017 0.000 0.018 0.000 lines.py:36(segment_hits) 198 0.003 0.000 0.033 0.000 lines.py:384(contains) 229 0.002 0.000 0.002 0.000 {built-in method affine_transform} 198 0.002 0.000 0.003 0.000 path.py:212(_update_values) 323/171 0.001 0.000 0.003 0.000 transforms.py:2352(get_affine) 261/1 0.001 0.000 0.037 0.037 artist.py:333(hitlist) 202 0.001 0.000 0.001 0.000 {method 'reduce' of 'numpy.ufunc' objects} 408 0.001 0.000 0.001 0.000 weakref.py:101(__init__) 396 0.001 0.000 0.002 0.000 numeric.py:2428(seterr) 396 0.001 0.000 0.001 0.000 numeric.py:2524(geterr) 327 0.001 0.000 0.001 0.000 {built-in method array} 198 0.001 0.000 0.004 0.000 path.py:103(__init__) 337 0.000 0.000 0.000 0.000 {built-in method dot} 408 0.000 0.000 0.001 0.000 transforms.py:86(__init__) 198 0.000 0.000 0.007 0.000 transforms.py:1660(transform_path_affine) 353 0.000 0.000 0.002 0.000 transforms.py:1768(__init__) 412 0.000 0.000 0.000 0.000 __init__.py:879(__getitem__) 170 0.000 0.000 0.000 0.000 {built-in method concatenate} 371 0.000 0.000 0.001 0.000 transforms.py:1622(__init__) 364 0.000 0.000 0.000 0.000 {method 'nonzero' of 'numpy.ndarray' objects} 1 0.000 0.000 0.000 0.000 {built-in method showMessage} 219 0.000 0.000 0.002 0.000 transforms.py:1723(transform_affine) 524 0.000 0.000 0.000 0.000 {built-in method isinstance} 408 0.000 0.000 0.000 0.000 weakref.py:255(update) 396 0.000 0.000 0.000 0.000 {built-in method seterrobj} 248 0.000 0.000 0.001 0.000 numeric.py:394(asarray) 198 0.000 0.000 0.000 0.000 transforms.py:2662(_revalidate) 198 0.000 0.000 0.003 0.000 transforms.py:2687(get_transformed_path_and_affine) 1246 0.000 0.000 0.000 0.000 {built-in method len} 23 0.000 0.000 0.002 0.000 text.py:917(get_window_extent) 39 0.000 0.000 0.002 0.000 text.py:251(contains) 16 0.000 0.000 0.000 0.000 transforms.py:692(translated) 332 0.000 0.000 0.000 0.000 {method 'ravel' of 'numpy.ndarray' objects} 198 0.000 0.000 0.003 0.000 transforms.py:2703(get_affine) 792 0.000 0.000 0.000 0.000 {built-in method geterrobj} 437 0.000 0.000 0.000 0.000 transforms.py:1813(get_matrix) 167 0.000 0.000 0.000 0.000 transforms.py:2527(get_matrix) 400 0.000 0.000 0.000 0.000 path.py:221(vertices) 202 0.000 0.000 0.001 0.000 {method 'all' of 'numpy.ndarray' objects} 202 0.000 0.000 0.001 0.000 _methods.py:40(_all) 186/170 0.000 0.000 0.000 0.000 transforms.py:2313(_get_is_affine) 25 0.000 0.000 0.000 0.000 transforms.py:401(_get_bounds) 198 0.000 0.000 0.007 0.000 transforms.py:1656(transform_path) 25 0.000 0.000 0.000 0.000 transforms.py:779(__init__) 162 0.000 0.000 0.000 0.000 transforms.py:2209(get_matrix) 16 0.000 0.000 0.000 0.000 font_manager.py:786(get_size_in_points) 198 0.000 0.000 0.000 0.000 core.py:5776(isMaskedArray) 198 0.000 0.000 0.000 0.000 lines.py:663(_get_transformed_path) 4 0.000 0.000 0.000 0.000 linalg.py:455(inv) 39 0.000 0.000 0.000 0.000 text.py:880(get_position) 21 0.000 0.000 0.001 0.000 transforms.py:1292(transform) 42 0.000 0.000 0.000 0.000 weakref.py:149(__setitem__) 2 0.000 0.000 0.000 0.000 patches.py:653(_update_patch_transform) 16 0.000 0.000 0.000 0.000 font_manager.py:701(__hash__) 16 0.000 0.000 0.000 0.000 text.py:886(get_prop_tup) 49 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} 16 0.000 0.000 0.000 0.000 text.py:327(_get_layout) 242 0.000 0.000 0.000 0.000 artist.py:351(get_children) 202 0.000 0.000 0.000 0.000 path.py:235(codes) 198 0.000 0.000 0.000 0.000 cbook.py:753(is_numlike) 21 0.000 0.000 0.001 0.000 transforms.py:1388(transform_point) 214 0.000 0.000 0.000 0.000 figure.py:399(_get_dpi) 22 0.000 0.000 0.000 0.000 transforms.py:162(set_children) 21 0.000 0.000 0.000 0.000 transforms.py:2328(transform_affine) 4 0.000 0.000 0.000 0.000 {built-in method point_in_path} 2 0.000 0.000 0.001 0.000 patches.py:673(contains) vs ax.mouseover = False %prun ax.figure.canvas.manager.toolbar.mouse_move(ev) 13 function calls in 0.000 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 0.000 0.000 {method 'emit' of 'PyQt5.QtCore.pyqtBoundSignal' objects} 1 0.000 0.000 0.000 0.000 {built-in method exec} 1 0.000 0.000 0.000 0.000 {built-in method statusBar} 1 0.000 0.000 0.000 0.000 backend_bases.py:2805(mouse_move) 1 0.000 0.000 0.000 0.000 :1() 1 0.000 0.000 0.000 0.000 backend_qt5.py:494(_show_message) 1 0.000 0.000 0.000 0.000 backend_bases.py:2789(_set_cursor) 1 0.000 0.000 0.000 0.000 backend_qt5.py:664(set_message) 1 0.000 0.000 0.000 0.000 {built-in method showMessage} 1 0.000 0.000 0.000 0.000 _base.py:3070(format_coord) 1 0.000 0.000 0.000 0.000 _base.py:3110(get_navigate) 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 1 0.000 0.000 0.000 0.000 {built-in method len} These are on a newish i7 desktop, I was getting a ms/Line2D object on a 1.5 year old mobile i5 with power saving turned up to 11.

Open Graph Description: The mouse-over behavior to add a string to the message line can quickly become too expensive to compute the hit list in the time between mouse move events (particularly in the nbagg and qt5agg back...

X Description: The mouse-over behavior to add a string to the message line can quickly become too expensive to compute the hit list in the time between mouse move events (particularly in the nbagg and qt5agg back...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:2f44fb13-7b47-c3ea-5ade-c17f0b8359d7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9308:152AB4:E35D3:12CBCA:6A52DEEA
html-safe-nonce584ee8bc5978630364eedfc4aebb2cf2f827c81b560c5190b074de8f5a8b5d4f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MzA4OjE1MkFCNDpFMzVEMzoxMkNCQ0E6NkE1MkRFRUEiLCJ2aXNpdG9yX2lkIjoiMjUzNTQwNjE3Mzk5NTMyNzIxMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacc76761a5697174ebb7204c55aac78cb5a55a9a9d5b54f091e7efdc19905229bd
hovercard-subject-tagpull_request:41395202
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/4847/files
twitter:imagehttps://avatars.githubusercontent.com/u/199813?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/199813?s=400&v=4
og:image:altThe mouse-over behavior to add a string to the message line can quickly become too expensive to compute the hit list in the time between mouse move events (particularly in the nbagg and qt5agg back...
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/4847/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F4847%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%2F4847%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/4847/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/4847/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/4847/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/files
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/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
tacaswellhttps://github.com/tacaswell
matplotlib:masterhttps://github.com/matplotlib/matplotlib/tree/master
tacaswell:enh_add_mouseover_rchttps://github.com/tacaswell/matplotlib/tree/enh_add_mouseover_rc
Conversation 9 https://github.com/matplotlib/matplotlib/pull/4847
Commits 1 https://github.com/matplotlib/matplotlib/pull/4847/commits
Checks 0 https://github.com/matplotlib/matplotlib/pull/4847/checks
Files changed https://github.com/matplotlib/matplotlib/pull/4847/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/files
ENH: make mouse over behavior configurable https://github.com/matplotlib/matplotlib/pull/4847/files#top
Show all changes 1 commit https://github.com/matplotlib/matplotlib/pull/4847/files
88ee8e3 ENH: make mouse over behavior configurable tacaswell Aug 1, 2015 https://github.com/matplotlib/matplotlib/pull/4847/commits/88ee8e3b47c6ab0a9f520958c136022346fd4932
Clear filters https://github.com/matplotlib/matplotlib/pull/4847/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/files
2015-01-19_cursor_pixel_data.rst https://github.com/matplotlib/matplotlib/pull/4847/files#diff-182fa91415ab4043792dd331b8e2ea2ae9586521a1bba7674ed665daa0feb9f7
_base.py https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
backend_bases.py https://github.com/matplotlib/matplotlib/pull/4847/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
rcsetup.py https://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
matplotlibrc.template https://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
doc/users/whats_new/2015-01-19_cursor_pixel_data.rsthttps://github.com/matplotlib/matplotlib/pull/4847/files#diff-182fa91415ab4043792dd331b8e2ea2ae9586521a1bba7674ed665daa0feb9f7
View file https://github.com/tacaswell/matplotlib/blob/88ee8e3b47c6ab0a9f520958c136022346fd4932/doc/users/whats_new/2015-01-19_cursor_pixel_data.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/4847/{{ revealButtonHref }}
mdboomhttps://github.com/mdboom
Aug 6, 2015https://github.com/matplotlib/matplotlib/pull/4847/files#r36462458
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/4847/files
lib/matplotlib/axes/_base.pyhttps://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
View file https://github.com/tacaswell/matplotlib/blob/88ee8e3b47c6ab0a9f520958c136022346fd4932/lib/matplotlib/axes/_base.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/4847/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-eab8def55235f317e1ea06840d82467044586af2a7f9ec994356a14f70509b72
lib/matplotlib/backend_bases.pyhttps://github.com/matplotlib/matplotlib/pull/4847/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
View file https://github.com/tacaswell/matplotlib/blob/88ee8e3b47c6ab0a9f520958c136022346fd4932/lib/matplotlib/backend_bases.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/4847/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-c21fb96269cbb9b214edf0c22981b347d8b710abaad167da678242ce8a539bb2
lib/matplotlib/rcsetup.pyhttps://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
View file https://github.com/tacaswell/matplotlib/blob/88ee8e3b47c6ab0a9f520958c136022346fd4932/lib/matplotlib/rcsetup.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/4847/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-cbdeb0e4217c66c0eab3ff5027da14906cb705419722f8269bc9ccaadd2422b1
matplotlibrc.templatehttps://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
View file https://github.com/tacaswell/matplotlib/blob/88ee8e3b47c6ab0a9f520958c136022346fd4932/matplotlibrc.template
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/4847/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
https://github.com/matplotlib/matplotlib/pull/4847/files#diff-9eaf38a8a7b9d20d5719447762f60b98c69bb8503da6bfa40df69bd2844458cf
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.