René's URL Explorer Experiment


Title: Plot limit with transform by pelson · Pull Request #731 · matplotlib/matplotlib · GitHub

Open Graph Title: Plot limit with transform by pelson · Pull Request #731 · matplotlib/matplotlib

X Title: Plot limit with transform by pelson · Pull Request #731 · matplotlib/matplotlib

Description: This pull request represents a significant chunk of work to address a simple bug: import matplotlib.pyplot as plt import matplotlib.transforms as mtrans ax = plt.axes() off_trans = mtrans.Affine2D().translate(10, 10) plt.plot(range(11), transform=off_trans + ax.transData) print(ax.dataLim) The result should be [10, 10, 20, 20], but the offset transform has not been taken into account. Since a path transformation can be costly, it made sense to use the created Line's cached transform concept. This threw up another, quite confusing bug: import matplotlib.projections.polar as polar import matplotlib.transforms as mtrans import matplotlib.path as mpath import numpy as np full = mtrans.Affine2D().translate(1, 0) + polar.PolarAxes.PolarTransform() verts = np.array([[0, 0], [5, 5], [2, 0]]) p = mpath.Path(verts) tpath = mtrans.TransformedPath(p, full) partial_p, aff = tpath.get_transformed_path_and_affine() print full.transform_path_affine(full.transform_path_non_affine(p)) print full.get_affine().transform_path_affine(full.transform_path_non_affine(p)) The numbers themselves aren't important, suffice to say that the former is correct. Additionally, the need for non-affine Transform subclasses to implement transform_non_affine and also copy this definition into transform too is confusing/obfuscating e.g.: class PolarTransform(Transform): def transform(self, tr): # ... # do some stuff # ... return xy transform.__doc__ = Transform.transform.__doc__ transform_non_affine = transform transform_non_affine.__doc__ = Transform.transform_non_affine.__doc__ This latter complaint is the result of an optimisation that will see little benefit (transform stacks are typically mostly Affine, and the non-affine part is easily cached). Therefore this pull request represents a simplification (at the cost of a couple more function calls) of the current Transform framework. Whilst it is my opinion that the Transform class heirachy remains non-optimally representative of the problem space, I have tried to be pragmatic in my changes for both backwards compatibility and size of review considerations. This pull request is independent of the invalidation mechanism upgrade being discussed in #723, and a merge between the two should be straight forward. The tests run exactly the same as they did before commencing this work (they weren't passing on my machine in the first place, but the RMS values have not changed at all). The run time has gone up 5 seconds up to 458 seconds (~1% slower), but this includes the new tests as a result of this pull. Note this change subtly affects the way one should implement a Transform. If you are implementing a non affine transformation, then you should override the transform_non_affine, rather than overriding the transform & copying the transform into transform_non_affine too. e.g.: class PolarTransform(Transform): def transform_non_affine(self, tr): # ... # do some stuff # ... return xy transform_non_affine.__doc__ = Transform.transform_non_affine.__doc__ The documentation is still representative of this change, hence there are few documentation changes included in this pull request.

Open Graph Description: This pull request represents a significant chunk of work to address a simple bug: import matplotlib.pyplot as plt import matplotlib.transforms as mtrans ax = plt.axes() off_trans = mtrans.Affine2D...

X Description: This pull request represents a significant chunk of work to address a simple bug: import matplotlib.pyplot as plt import matplotlib.transforms as mtrans ax = plt.axes() off_trans = mtrans.Affine2D...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:e441f821-ff2a-b629-e4d0-6ef2a2c9840a
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idB306:2A736A:34CBEC:45A9FA:6A52F6D4
html-safe-nonce29785c3b547018395fab3e3d3462f12b686f1748499d962a6add8c155260e308
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMzA2OjJBNzM2QTozNENCRUM6NDVBOUZBOjZBNTJGNkQ0IiwidmlzaXRvcl9pZCI6IjUyNjQ1ODk1OTY4ODEyNTQxMDAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac7abec315def73e9f2fbfa75ee490272b501a3f1e380410e02cae664dd06927bc
hovercard-subject-tagpull_request:911137
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/731/files
twitter:imagehttps://avatars.githubusercontent.com/u/810663?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/810663?s=400&v=4
og:image:altThis pull request represents a significant chunk of work to address a simple bug: import matplotlib.pyplot as plt import matplotlib.transforms as mtrans ax = plt.axes() off_trans = mtrans.Affine2D...
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/731/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F731%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%2F731%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/731/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/731/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/731/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/files
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/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
mdboomhttps://github.com/mdboom
matplotlib:masterhttps://github.com/matplotlib/matplotlib/tree/master
pelson:plot_limit_with_transformhttps://github.com/pelson/matplotlib/tree/plot_limit_with_transform
Conversation 25 https://github.com/matplotlib/matplotlib/pull/731
Commits 11 https://github.com/matplotlib/matplotlib/pull/731/commits
Checks 0 https://github.com/matplotlib/matplotlib/pull/731/checks
Files changed https://github.com/matplotlib/matplotlib/pull/731/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/files
Plot limit with transform https://github.com/matplotlib/matplotlib/pull/731/files#top
Show all changes 11 commits https://github.com/matplotlib/matplotlib/pull/731/files
8bbe2e5 Substantial change to transform to make it work as documented. The up… Feb 29, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/8bbe2e55f29b28ba558504b27596b8e36a087c1c
2f2ff13 Several bugs fixed, particularly with Polar & Geo. Feb 29, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/2f2ff13ad6331257f30fc4f9649c43a0b883ad68
2286565 All tests work as expected. Feb 29, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/22865652c16bc52aae81ab1ab8501b101113969e
3ccff6f Made small, pre-pull changes. Feb 29, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/3ccff6f2f35e7b7737f026aa7da9795cfc51b45e
dfbe69c Finall improvements to plot extent calculation. Mar 1, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/dfbe69c47d65980f788e5f220c015e35143321ee
83ed6c8 Changes as a result of reading diffs prior to pull request. Mar 1, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/83ed6c8a218c4e4b949af08b1c0a5f727fc17cc4
b96e139 Removed the use of x_isdata and y_isdata and tidied up transfoms a li… pelson Aug 13, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/b96e13988290f3d29cf26953bd29a7d9b456b446
45f234f Avoided the use of the hashable property of a transform. pelson Aug 14, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/45f234f7da0948bd319af4f7be633ca82d5744d9
8dbe074 Added appropriate change logs for new transform mechanims, fixed a bu… pelson Aug 14, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/8dbe07438c3c82813f65dff3bbfd386f1decd104
930b117 Small doc changes re transform with plot limits. pelson Aug 20, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/930b1173e1983af9bcf6eb7ac4e9642d19d5f626
4b0fbb5 Doc improvements and line wrapping. pelson Aug 21, 2012 https://github.com/matplotlib/matplotlib/pull/731/commits/4b0fbb526b524132cb574df0fb6232f34e254f14
Clear filters https://github.com/matplotlib/matplotlib/pull/731/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/files
api_changes.rst https://github.com/matplotlib/matplotlib/pull/731/files#diff-cd3ee6de407043a9cec9c7b51eb01be6a7cd003f040685463ba1897375ebd044
artist.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-387b214c5fcea589dc666d01c8877efc5960ea34625a8de60c857fe312223d63
axes.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
lines.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
patches.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-03b74bfefbb7d4eca2804f274825899d191f8bacdbe99ea973d88925f15d1169
geo.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-cff37d122f87390fc78225bb69fdbc1e83b2d309e707063bd8994d19575e4180
polar.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-f883675cd20e3f5e0f3c82d72bee7fc65253dea7cf2397e662551fdade5cd157
test_transforms.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-9c604e3ebce77d5db7e7eb4a4f92a08a8fab56faa8646ecf952ed0a3ad7a233c
transforms.py https://github.com/matplotlib/matplotlib/pull/731/files#diff-501b7013d3efa42e08d1cc8dc7a27ee6944fcddb062cd7032249a0031bb01ff4
doc/api/api_changes.rsthttps://github.com/matplotlib/matplotlib/pull/731/files#diff-cd3ee6de407043a9cec9c7b51eb01be6a7cd003f040685463ba1897375ebd044
View file https://github.com/pelson/matplotlib/blob/4b0fbb526b524132cb574df0fb6232f34e254f14/doc/api/api_changes.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/731/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/731/files#diff-cd3ee6de407043a9cec9c7b51eb01be6a7cd003f040685463ba1897375ebd044
https://github.com/matplotlib/matplotlib/pull/731/files#diff-cd3ee6de407043a9cec9c7b51eb01be6a7cd003f040685463ba1897375ebd044
lib/matplotlib/artist.pyhttps://github.com/matplotlib/matplotlib/pull/731/files#diff-387b214c5fcea589dc666d01c8877efc5960ea34625a8de60c857fe312223d63
View file https://github.com/pelson/matplotlib/blob/4b0fbb526b524132cb574df0fb6232f34e254f14/lib/matplotlib/artist.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/731/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/731/files#diff-387b214c5fcea589dc666d01c8877efc5960ea34625a8de60c857fe312223d63
https://github.com/matplotlib/matplotlib/pull/731/files#diff-387b214c5fcea589dc666d01c8877efc5960ea34625a8de60c857fe312223d63
lib/matplotlib/axes.pyhttps://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
View file https://github.com/pelson/matplotlib/blob/4b0fbb526b524132cb574df0fb6232f34e254f14/lib/matplotlib/axes.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/731/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
https://github.com/matplotlib/matplotlib/pull/731/files#diff-3af81d7a9136bab4bb3e42fac80e7d62cc6b03f077717b2aa66ec12c52d5983f
lib/matplotlib/lines.pyhttps://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
View file https://github.com/pelson/matplotlib/blob/4b0fbb526b524132cb574df0fb6232f34e254f14/lib/matplotlib/lines.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/731/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
https://github.com/matplotlib/matplotlib/pull/731/files#diff-be677869a88f58790f2387fb2ac0ae12e2e9610d7c7096e25d3087d5ed9645c8
lib/matplotlib/patches.pyhttps://github.com/matplotlib/matplotlib/pull/731/files#diff-03b74bfefbb7d4eca2804f274825899d191f8bacdbe99ea973d88925f15d1169
View file https://github.com/pelson/matplotlib/blob/4b0fbb526b524132cb574df0fb6232f34e254f14/lib/matplotlib/patches.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/731/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/731/files#diff-03b74bfefbb7d4eca2804f274825899d191f8bacdbe99ea973d88925f15d1169
https://github.com/matplotlib/matplotlib/pull/731/files#diff-03b74bfefbb7d4eca2804f274825899d191f8bacdbe99ea973d88925f15d1169
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/731/files
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.