René's URL Explorer Experiment


Title: [Bug]: for Python 3.11.9 got ValueError: PyCapsule_New called with null pointer · Issue #28267 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: for Python 3.11.9 got ValueError: PyCapsule_New called with null pointer · Issue #28267 · matplotlib/matplotlib

X Title: [Bug]: for Python 3.11.9 got ValueError: PyCapsule_New called with null pointer · Issue #28267 · matplotlib/matplotlib

Description: Bug summary I got next error src\tests\test_cover.py:48: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src\tests\test_cover.py:202: in draw_diagram fig, ax = plt.subplots(figsize=(14, 5), layout='constra...

Open Graph Description: Bug summary I got next error src\tests\test_cover.py:48: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src\tests\test_cover.py:202: in draw_diagram fig, ax = plt.s...

X Description: Bug summary I got next error src\tests\test_cover.py:48: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src\tests\test_cover.py:202: in draw_diagram fig, ax = plt.s...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: for Python 3.11.9 got ValueError: PyCapsule_New called with null pointer","articleBody":"### Bug summary\n\nI got next error \r\nsrc\\tests\\test_cover.py:48: \r\n    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\r\n    src\\tests\\test_cover.py:202: in draw_diagram\r\n        fig, ax = plt.subplots(figsize=(14, 5), layout='constrained')\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:1702: in subplots\r\n        fig = figure(**fig_kw)\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:1022: in figure\r\n        manager = new_figure_manager(\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:545: in new_figure_manager\r\n        return _get_backend_mod().new_figure_manager(*args, **kwargs)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:3521: in new_figure_manager\r\n        return cls.new_figure_manager_given_figure(num, fig)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:3526: in new_figure_manager_given_figure\r\n        return cls.FigureCanvas.new_manager(figure, num)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:1811: in new_manager\r\n        return cls.manager_class.create_with_canvas(cls, figure, num)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backends\\_backend_tk.py:479: in create_with_canvas\r\n        with _restore_foreground_window_at_end():\r\n    C:\\Users\\olapbuild\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py:137: in __enter__\r\n        return next(self.gen)\r\n    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\r\n    \r\n        @contextmanager\r\n        def _restore_foreground_window_at_end():\r\n    \u003e       foreground = _c_internal_utils.Win32_GetForegroundWindow()\r\n    E       ValueError: PyCapsule_New called with null pointer\r\n    \r\n    .venv\\Lib\\site-packages\\matplotlib\\backends\\_backend_tk.py:43: ValueError\n\n### Code for reproduction\n\n```Python\ndef draw_diagram():\r\n    width = 0.4  # Задаём ширину столбцов\r\n    fig, ax = plt.subplots(figsize=(14, 5), layout='constrained')\r\n    ax.bar(labels, cowered_data, width, label='Процент покрытых мер-измерений тестами')\r\n    ax.bar(labels, uncowered_data, width, bottom=cowered_data,\r\n           label='Процент непокрытых мер-измерений тестами')\r\n    ax.set_ylabel('% покрытия')\r\n    ax.set_title('Процент покрытия кубов тестами')\r\n    ax.legend()\r\n    plt.savefig('diagram.png')\n```\n\n\n### Actual outcome\n\nsrc\\tests\\test_cover.py:48: \r\n    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\r\n    src\\tests\\test_cover.py:202: in draw_diagram\r\n        fig, ax = plt.subplots(figsize=(14, 5), layout='constrained')\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:1702: in subplots\r\n        fig = figure(**fig_kw)\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:1022: in figure\r\n        manager = new_figure_manager(\r\n    .venv\\Lib\\site-packages\\matplotlib\\pyplot.py:545: in new_figure_manager\r\n        return _get_backend_mod().new_figure_manager(*args, **kwargs)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:3521: in new_figure_manager\r\n        return cls.new_figure_manager_given_figure(num, fig)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:3526: in new_figure_manager_given_figure\r\n        return cls.FigureCanvas.new_manager(figure, num)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backend_bases.py:1811: in new_manager\r\n        return cls.manager_class.create_with_canvas(cls, figure, num)\r\n    .venv\\Lib\\site-packages\\matplotlib\\backends\\_backend_tk.py:479: in create_with_canvas\r\n        with _restore_foreground_window_at_end():\r\n    C:\\Users\\olapbuild\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py:137: in __enter__\r\n        return next(self.gen)\r\n    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\r\n    \r\n        @contextmanager\r\n        def _restore_foreground_window_at_end():\r\n    \u003e       foreground = _c_internal_utils.Win32_GetForegroundWindow()\r\n    E       ValueError: PyCapsule_New called with null pointer\r\n    \r\n    .venv\\Lib\\site-packages\\matplotlib\\backends\\_backend_tk.py:43: ValueError\n\n### Expected outcome\n\n![diagram](https://github.com/matplotlib/matplotlib/assets/105438413/cca8af94-9e66-441f-9c5a-8790bdb67ffc)\r\n\n\n### Additional information\n\n_No response_\n\n### Operating system\n\nWindows NT\n\n### Matplotlib Version\n\n3.9.0\n\n### Matplotlib Backend\n\ntkagg\n\n### Python version\n\n3.11.9, 3.12\n\n### Jupyter version\n\n_No response_\n\n### Installation\n\npip","author":{"url":"https://github.com/alekseiBochkarev","@type":"Person","name":"alekseiBochkarev"},"datePublished":"2024-05-21T06:03:35.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/28267/matplotlib/issues/28267"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:13096862-65f3-e18c-4b93-542edd12aa83
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8058:18C7E2:14C28F8:1BD1D35:6A534723
html-safe-noncefe72331d6fd381c51a4894d6e8e43b4c0ccb192ca9b27a415699461b96bd1bfd
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MDU4OjE4QzdFMjoxNEMyOEY4OjFCRDFEMzU6NkE1MzQ3MjMiLCJ2aXNpdG9yX2lkIjoiNjc2NjQ4MDczMjIxNTg4NzcxIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac42f96351482b9cc260a7c674087d56e977303bf48d767ccea6ab37b76d609439
hovercard-subject-tagissue:2307388202
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/28267/issue_layout
twitter:imagehttps://opengraph.githubassets.com/15ffd65dac5b27ea0d71de93042895423d11c0d11bf00f8522647028b7f5c9de/matplotlib/matplotlib/issues/28267
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/15ffd65dac5b27ea0d71de93042895423d11c0d11bf00f8522647028b7f5c9de/matplotlib/matplotlib/issues/28267
og:image:altBug summary I got next error src\tests\test_cover.py:48: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src\tests\test_cover.py:202: in draw_diagram fig, ax = plt.s...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamealekseiBochkarev
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
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
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/28267#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F28267
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%2F28267
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/28267
Reloadhttps://github.com/matplotlib/matplotlib/issues/28267
Reloadhttps://github.com/matplotlib/matplotlib/issues/28267
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/28267
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/28267
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
#28269https://github.com/matplotlib/matplotlib/pull/28269
[Bug]: for Python 3.11.9 got ValueError: PyCapsule_New called with null pointerhttps://github.com/matplotlib/matplotlib/issues/28267#top
#28269https://github.com/matplotlib/matplotlib/pull/28269
v3.9.1https://github.com/matplotlib/matplotlib/milestone/91
https://github.com/alekseiBochkarev
alekseiBochkarevhttps://github.com/alekseiBochkarev
on May 21, 2024https://github.com/matplotlib/matplotlib/issues/28267#issue-2307388202
https://private-user-images.githubusercontent.com/105438413/332297175-cca8af94-9e66-441f-9c5a-8790bdb67ffc.jpg?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4NDI4OTYsIm5iZiI6MTc4Mzg0MjU5NiwicGF0aCI6Ii8xMDU0Mzg0MTMvMzMyMjk3MTc1LWNjYThhZjk0LTllNjYtNDQxZi05YzVhLTg3OTBiZGI2N2ZmYy5qcGc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNzEyJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDcxMlQwNzQ5NTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1jMzJiOTIyY2I4YTU4ZTZhM2U1YWRmOTk5ZmEwYmM3M2IxYWM1Y2M0Y2E0Mzk4YjQ1MTg0MzkyMmRlNTFlMzFjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZyZXNwb25zZS1jb250ZW50LXR5cGU9aW1hZ2UlMkZqcGVnIn0.4YfmOIAcuz0gD3Hy1InGEDCNGJan3LuMlJJBikKsoVg
v3.9.1https://github.com/matplotlib/matplotlib/milestone/91
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.