René's URL Explorer Experiment


Title: BUG: CompositeGenericTransform.contains_branch_separately only checks second component, ignoring first · Issue #32099 · matplotlib/matplotlib · GitHub

Open Graph Title: BUG: CompositeGenericTransform.contains_branch_separately only checks second component, ignoring first · Issue #32099 · matplotlib/matplotlib

X Title: BUG: CompositeGenericTransform.contains_branch_separately only checks second component, ignoring first · Issue #32099 · matplotlib/matplotlib

Description: Bug summary CompositeGenericTransform.contains_branch_separately() only checks the second component (_b) of the composite transform, completely ignoring the first component (_a). This means if a composed transform is A + B and the target...

Open Graph Description: Bug summary CompositeGenericTransform.contains_branch_separately() only checks the second component (_b) of the composite transform, completely ignoring the first component (_a). This means if a co...

X Description: Bug summary CompositeGenericTransform.contains_branch_separately() only checks the second component (_b) of the composite transform, completely ignoring the first component (_a). This means if a co...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"BUG: CompositeGenericTransform.contains_branch_separately only checks second component, ignoring first","articleBody":"## Bug summary\n\n`CompositeGenericTransform.contains_branch_separately()` only checks the second component (`_b`) of the composite transform, completely ignoring the first component (`_a`). This means if a composed transform is `A + B` and the target transform is a subtree of `A`, it returns `(False, False)` instead of the correct result.\n\n## Code for reproduction\n\nA composite transform `A + B` where the query transform is found in component `A`:\n\n```python\nimport matplotlib.transforms as mtransforms\nfrom matplotlib.transforms import Transform, BlendedGenericTransform\n\n# Two independent non-affine transforms\nclass NonAffine(Transform):\n    input_dims = 2\n    output_dims = 2\n    is_separable = True\n    is_affine = False\n    def transform_non_affine(self, values): return values\n\ntn1 = NonAffine()\ntn2 = NonAffine()\n\n# Blended transform: _x=tn1, _y=tn2\nblend = BlendedGenericTransform(tn1, tn2)\n\n# Composite: _a=blend, _b=tn1\ncomposite = blend + tn1\n\n# tn1 is a subtree of _a.x, but NOT of _b\nx, y = composite.contains_branch_separately(tn1)\nprint(f'x={x}, y={y}')  # Got: False, False. Expected: True, False\n```\n\n## Actual outcome\n\n`contains_branch_separately` returns `(False, False)`.\n\n## Expected outcome\n\n`contains_branch_separately` should return `(True, False)` since `tn1` is in the `_a.x` branch.\n\n## Buggy code location\n\nhttps://github.com/matplotlib/matplotlib/blob/main/lib/matplotlib/transforms.py#L2450-L2457\n\n```python\ndef contains_branch_separately(self, other_transform):\n    if self.output_dims != 2:\n        raise ValueError('contains_branch_separately only supports '\n                         'transforms with 2 output dimensions')\n    if self == other_transform:\n        return (True, True)\n    return self._b.contains_branch_separately(other_transform)  # \u003c-- only _b!\n```\n\nThe fix should check both children:\n\n```python\ndef contains_branch_separately(self, other_transform):\n    if self.output_dims != 2:\n        raise ValueError('contains_branch_separately only supports '\n                         'transforms with 2 output dimensions')\n    if self == other_transform:\n        return (True, True)\n    a_result = self._a.contains_branch_separately(other_transform)\n    b_result = self._b.contains_branch_separately(other_transform)\n    return (a_result[0] or b_result[0], a_result[1] or b_result[1])\n```\n\n## Impact\n\nThis bug affects any code that uses `contains_branch_separately` on composite transforms, including autoscaling and axis limit updates in `axes/_base.py`, `axes/_axes.py`, `collections.py`, and `contour.py`. When a composite transform's first component contains `transData`, the method would incorrectly return `False`, potentially causing autoscaling to not trigger.\n\n## Matplotlib version\n\nmain branch (all versions with this code).\n\nNote: `CompositeAffine2D` does NOT have this bug because it doesn't override `contains_branch_separately` and inherits the base `Transform` implementation which uses `contains_branch` -\u003e `_iter_break_from_left_to_right`, which correctly iterates both children.\n","author":{"url":"https://github.com/sanrishi","@type":"Person","name":"sanrishi"},"datePublished":"2026-07-22T21:27:22.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/32099/matplotlib/issues/32099"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f94a7b5b-6a50-d48b-8f95-8246e39d6d6a
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAEFA:16F3DB:696800:969514:6A6374B2
html-safe-nonce87ed68e3442e37b63556209fe5ee1ca48bde01d11d5cd90fc9e0ed4bcfb70504
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRUZBOjE2RjNEQjo2OTY4MDA6OTY5NTE0OjZBNjM3NEIyIiwidmlzaXRvcl9pZCI6IjIyMjg1MjIxNzUwNTc1ODk0MjYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac76efefbf73be45ea94999eff2dc07790bc5339553901fc8d2fd2bac4c4965221
hovercard-subject-tagissue:4953316873
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/32099/issue_layout
twitter:imagehttps://opengraph.githubassets.com/e7bdd25d4463dbe9c572c6b3b39d3aea0ac80d9ad61da2bce73ca84aa648ae85/matplotlib/matplotlib/issues/32099
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/e7bdd25d4463dbe9c572c6b3b39d3aea0ac80d9ad61da2bce73ca84aa648ae85/matplotlib/matplotlib/issues/32099
og:image:altBug summary CompositeGenericTransform.contains_branch_separately() only checks the second component (_b) of the composite transform, completely ignoring the first component (_a). This means if a co...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesanrishi
hostnamegithub.com
expected-hostnamegithub.com
None15e78334bb345f3864e70c5a376ed0383374123629b9e3022398d9431f6cd8bf
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
release51da2d8d0a841a1393b806a6559fa9ad757e1666
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/32099#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F32099
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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%2F32099
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/32099
Reloadhttps://github.com/matplotlib/matplotlib/issues/32099
Reloadhttps://github.com/matplotlib/matplotlib/issues/32099
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/32099
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/32099
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 418 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
#32109https://github.com/matplotlib/matplotlib/pull/32109
BUG: CompositeGenericTransform.contains_branch_separately only checks second component, ignoring firsthttps://github.com/matplotlib/matplotlib/issues/32099#top
#32109https://github.com/matplotlib/matplotlib/pull/32109
https://github.com/sanrishi
sanrishihttps://github.com/sanrishi
on Jul 22, 2026https://github.com/matplotlib/matplotlib/issues/32099#issue-4953316873
https://github.com/matplotlib/matplotlib/blob/main/lib/matplotlib/transforms.py#L2450-L2457https://github.com/matplotlib/matplotlib/blob/main/lib/matplotlib/transforms.py#L2450-L2457
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.