René's URL Explorer Experiment


Title: AttributeError: dlsym failed · Issue #6510 · RustPython/RustPython · GitHub

Open Graph Title: AttributeError: dlsym failed · Issue #6510 · RustPython/RustPython

X Title: AttributeError: dlsym failed · Issue #6510 · RustPython/RustPython

Description: Hi! I'm trying to run prompt-toolkit (the main prompt engine for xonsh shell) and facing with exception. # rustpython v0.4.0 (https://github.com/RustPython/RustPython#92acf339) rustpython -m pip install prompt-toolkit # 3.0.52 ptk.py: fr...

Open Graph Description: Hi! I'm trying to run prompt-toolkit (the main prompt engine for xonsh shell) and facing with exception. # rustpython v0.4.0 (https://github.com/RustPython/RustPython#92acf339) rustpython -m pip in...

X Description: Hi! I'm trying to run prompt-toolkit (the main prompt engine for xonsh shell) and facing with exception. # rustpython v0.4.0 (https://github.com/RustPython/RustPython#92acf339) rustpython -m pi...

Opengraph URL: https://github.com/RustPython/RustPython/issues/6510

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"AttributeError: dlsym failed","articleBody":"Hi! I'm trying to run prompt-toolkit (the main prompt engine for xonsh shell) and facing with exception.\n```xsh\n# rustpython v0.4.0 (https://github.com/RustPython/RustPython#92acf339)\nrustpython -m pip install prompt-toolkit # 3.0.52\n```\nptk.py:\n```xsh\nfrom prompt_toolkit import prompt\ntext = prompt(\"Say something: \")\nprint(\"You said:\", text)\n```\nRun:\n```xsh\n~/.cargo/bin/rustpython ptk.py\n```\n```xsh\nTraceback (most recent call last):\n  File \"ptk.py\", line 3, in \u003cmodule\u003e\n    text = prompt(\"Say something: \")\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/shortcuts/prompt.py\", line 1494, in prompt\n    inputhook=inputhook,\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/shortcuts/prompt.py\", line 1059, in prompt\n    inputhook=inputhook,\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/application/application.py\", line 1002, in run\n    return asyncio.run(coro)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/runners.py\", line 193, in run\n    with Runner(debug=debug, loop_factory=loop_factory) as runner:\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/runners.py\", line 194, in run\n    return runner.run(main)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/runners.py\", line 129, in run\n    signal.signal(signal.SIGINT, signal.default_int_handler)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/runners.py\", line 124, in run\n    raise  # CancelledError\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/runners.py\", line 118, in run\n    return self._loop.run_until_complete(task)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/base_events.py\", line 687, in run_until_complete\n    return future.result()\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/futures.py\", line 203, in result\n    raise self._exception.with_traceback(self._exception_tb)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/asyncio/tasks.py\", line 314, in __step_run_and_handle_result\n    result = coro.send(None)\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/application/application.py\", line 865, in run_async\n    with ExitStack() as stack:\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/application/application.py\", line 877, in run_async\n    stack.enter_context(set_handle_sigint(loop))\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/contextlib.py\", line 530, in enter_context\n    result = _enter(cm)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/contextlib.py\", line 143, in __enter__\n    raise RuntimeError(\"generator didn't yield\") from None\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/contextlib.py\", line 141, in __enter__\n    return next(self.gen)\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/application/application.py\", line 810, in set_handle_sigint\n    with _restore_sigint_from_ctypes():\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/contextlib.py\", line 143, in __enter__\n    raise RuntimeError(\"generator didn't yield\") from None\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/contextlib.py\", line 141, in __enter__\n    return next(self.gen)\n  File \"/Users/pc/.local/lib/rustpython3.13/site-packages/prompt_toolkit/application/application.py\", line 1610, in _restore_sigint_from_ctypes\n    pythonapi.PyOS_getsig.restype = c_void_p\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/ctypes/__init__.py\", line 412, in __getattr__\n    func = self.__getitem__(name)\n  File \"/Users/pc/.cargo/git/checkouts/rustpython-63090cdce5e18442/92acf33/crates/pylib/Lib/ctypes/__init__.py\", line 417, in __getitem__\n    func = self._FuncPtr((name_or_ordinal, self))\nAttributeError: dlsym failed\n```","author":{"url":"https://github.com/anki-code","@type":"Person","name":"anki-code"},"datePublished":"2025-12-25T05:16:06.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":6},"url":"https://github.com/6510/RustPython/issues/6510"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1d4eeeca-4bfc-7b63-3ab8-25b2392d66f7
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDE24:3E9E49:51D4E9:70290D:6964F45E
html-safe-nonce189a80133507c102b36c3311bffa826e086f06d1cdcf4486d375d498b48d71ca
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJERTI0OjNFOUU0OTo1MUQ0RTk6NzAyOTBEOjY5NjRGNDVFIiwidmlzaXRvcl9pZCI6IjYwODI4MDU2Nzg3Nzk3MjQ4OTQiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacbefffae40fa8d90d3e8f5895487489e8c619ed1a41fbe31e2db726351d05ea61
hovercard-subject-tagissue:3761424123
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/RustPython/RustPython/6510/issue_layout
twitter:imagehttps://opengraph.githubassets.com/69b72ded074dabf0bbb85e53dde7d8256b9a898213a7d1f2bf52acd1a9c934b4/RustPython/RustPython/issues/6510
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/69b72ded074dabf0bbb85e53dde7d8256b9a898213a7d1f2bf52acd1a9c934b4/RustPython/RustPython/issues/6510
og:image:altHi! I'm trying to run prompt-toolkit (the main prompt engine for xonsh shell) and facing with exception. # rustpython v0.4.0 (https://github.com/RustPython/RustPython#92acf339) rustpython -m pip in...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameanki-code
hostnamegithub.com
expected-hostnamegithub.com
None003e962bf5ca78f3f8f71db2461c6a7f9cfcbe99b480d6aeddaef78d33e9161a
turbo-cache-controlno-preview
go-importgithub.com/RustPython/RustPython git https://github.com/RustPython/RustPython.git
octolytics-dimension-user_id39710557
octolytics-dimension-user_loginRustPython
octolytics-dimension-repository_id135201145
octolytics-dimension-repository_nwoRustPython/RustPython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id135201145
octolytics-dimension-repository_network_root_nwoRustPython/RustPython
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
release21cbf6733480c5c09366f15b8dc8b6953472172a
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/issues/6510#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fissues%2F6510
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
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
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
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/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%2FRustPython%2FRustPython%2Fissues%2F6510
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=RustPython%2FRustPython
Reloadhttps://github.com/RustPython/RustPython/issues/6510
Reloadhttps://github.com/RustPython/RustPython/issues/6510
Reloadhttps://github.com/RustPython/RustPython/issues/6510
RustPython https://github.com/RustPython
RustPythonhttps://github.com/RustPython/RustPython
Notifications https://github.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.4k https://github.com/login?return_to=%2FRustPython%2FRustPython
Star 21.6k https://github.com/login?return_to=%2FRustPython%2FRustPython
Code https://github.com/RustPython/RustPython
Issues 275 https://github.com/RustPython/RustPython/issues
Pull requests 92 https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects 0 https://github.com/RustPython/RustPython/projects
Wiki https://github.com/RustPython/RustPython/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/RustPython/RustPython/security
Please reload this pagehttps://github.com/RustPython/RustPython/issues/6510
Insights https://github.com/RustPython/RustPython/pulse
Code https://github.com/RustPython/RustPython
Issues https://github.com/RustPython/RustPython/issues
Pull requests https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects https://github.com/RustPython/RustPython/projects
Wiki https://github.com/RustPython/RustPython/wiki
Security https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
New issuehttps://github.com/login?return_to=https://github.com/RustPython/RustPython/issues/6510
New issuehttps://github.com/login?return_to=https://github.com/RustPython/RustPython/issues/6510
AttributeError: dlsym failedhttps://github.com/RustPython/RustPython/issues/6510#top
https://github.com/anki-code
https://github.com/anki-code
anki-codehttps://github.com/anki-code
on Dec 25, 2025https://github.com/RustPython/RustPython/issues/6510#issue-3761424123
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.