René's URL Explorer Experiment


Title: rename issue · Issue #694 · python-lsp/python-lsp-server · GitHub

Open Graph Title: rename issue · Issue #694 · python-lsp/python-lsp-server

X Title: rename issue · Issue #694 · python-lsp/python-lsp-server

Description: Hi, using this request, i get an empty result [] file : def hello(): print('Hello World') class MyClass: def method(self): pass def to_be_deleted(): return True file_uri: file:///E:/WORKSPACE/devagents/tests/tests/mcp_refactor_data/refac...

Open Graph Description: Hi, using this request, i get an empty result [] file : def hello(): print('Hello World') class MyClass: def method(self): pass def to_be_deleted(): return True file_uri: file:///E:/WORKSPACE/devag...

X Description: Hi, using this request, i get an empty result [] file : def hello(): print('Hello World') class MyClass: def method(self): pass def to_be_deleted(): return True file_uri: file:///E:/WORKSPA...

Opengraph URL: https://github.com/python-lsp/python-lsp-server/issues/694

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"rename issue","articleBody":"\n\nHi,\n\nusing this request, i get an empty result []\n\nfile :\n```\ndef hello():\n    print('Hello World')\n\nclass MyClass:\n    def method(self):\n        pass\n\ndef to_be_deleted():\n    return True\n```\nfile_uri: file:///E:/WORKSPACE/devagents/tests/tests/mcp_refactor_data/refactor_target.py\n\n position '{'line': 0, 'character': 0}'\n \"symbol_name\": \"hello\",\n \"new_name\": \"greetings\"\n```\n result = await self._send_request(\"textDocument/rename\", {\n            \"textDocument\": {\"uri\": file_uri},\n            \"position\": position,\n            \"newName\": new_name\n        })\n```\n\nlogging stderr, I get this : \nWARNING - pylsp.config.config - Failed to load hook pylsp_rename: There is no name under the cursor\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: Traceback (most recent call last):\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pylsp\\config\\config.py\", line 40, in _hookexec\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: return self._inner_hookexec(hook_name, methods, kwargs, firstresult)\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_manager.py\", line 475, in traced_hookexec\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: return outcome.get_result()\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_result.py\", line 103, in get_result\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: raise exc.with_traceback(tb)\n2026-01-12 12:20:54,173 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_result.py\", line 62, in from_call\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: result = func()\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: ^^^^^^\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_manager.py\", line 472, in \u003clambda\u003e\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: lambda: oldcall(hook_name, hook_impls, caller_kwargs, firstresult)\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_callers.py\", line 167, in _multicall\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: raise exception\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pluggy\\_callers.py\", line 121, in _multicall\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: res = hook_impl.function(*args)\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\pylsp\\plugins\\jedi_rename.py\", line 19, in pylsp_rename\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: refactoring = document.jedi_script().rename(**kwargs)\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\jedi\\api\\__init__.py\", line 592, in rename\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: return refactoring.rename(self._inference_state, definitions, new_name)\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: File \"E:\\WORKSPACE\\devagents\\.venv\\Lib\\site-packages\\jedi\\api\\refactoring\\__init__.py\", line 152, in rename\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: raise RefactoringError(\"There is no name under the cursor\")\n2026-01-12 12:20:54,174 - __main__ - INFO - LSP stderr: jedi.api.exceptions.RefactoringError: There is no name under the cursor","author":{"url":"https://github.com/sancelot","@type":"Person","name":"sancelot"},"datePublished":"2026-01-12T11:00:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/694/python-lsp-server/issues/694"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:3f97a388-787b-d4e8-27ae-bff3ee399dbb
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD7C2:13D6E:173E6F4:1F2B8F3:69706A4E
html-safe-nonce751031080b07e9805c733c0dd7aab2bcca46692b716606615f5b0da9ca2a74e5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEN0MyOjEzRDZFOjE3M0U2RjQ6MUYyQjhGMzo2OTcwNkE0RSIsInZpc2l0b3JfaWQiOiIyNTc2NzI4MTUxODYwNDU1MTgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmace87e2a214ac1854d168e68c2849583351ca42d01df00a449dfc3eace9d01e4cc
hovercard-subject-tagissue:3803803756
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/python-lsp/python-lsp-server/694/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9bdfeab003b745206ea17af0f116d9de7bfe13850cfdb00b59c21a88a55e3fd7/python-lsp/python-lsp-server/issues/694
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9bdfeab003b745206ea17af0f116d9de7bfe13850cfdb00b59c21a88a55e3fd7/python-lsp/python-lsp-server/issues/694
og:image:altHi, using this request, i get an empty result [] file : def hello(): print('Hello World') class MyClass: def method(self): pass def to_be_deleted(): return True file_uri: file:///E:/WORKSPACE/devag...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesancelot
hostnamegithub.com
expected-hostnamegithub.com
None9920a62ba22d06470388e2904804fb7e5ec51c9e35f81784e9191394c74b2bd2
turbo-cache-controlno-preview
go-importgithub.com/python-lsp/python-lsp-server git https://github.com/python-lsp/python-lsp-server.git
octolytics-dimension-user_id51609341
octolytics-dimension-user_loginpython-lsp
octolytics-dimension-repository_id341006790
octolytics-dimension-repository_nwopython-lsp/python-lsp-server
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id341006790
octolytics-dimension-repository_network_root_nwopython-lsp/python-lsp-server
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
release7d6181066430cc06553c8396ca201e194ae33cb9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-lsp%2Fpython-lsp-server%2Fissues%2F694
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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-lsp%2Fpython-lsp-server%2Fissues%2F694
Sign up https://patch-diff.githubusercontent.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=python-lsp%2Fpython-lsp-server
Reloadhttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694
Reloadhttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694
Reloadhttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694
python-lsp https://patch-diff.githubusercontent.com/python-lsp
python-lsp-serverhttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-lsp%2Fpython-lsp-server
Fork 230 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-lsp%2Fpython-lsp-server
Star 2.5k https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-lsp%2Fpython-lsp-server
Code https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server
Issues 144 https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues
Pull requests 21 https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/pulls
Discussions https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/discussions
Actions https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/actions
Projects 0 https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/projects
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/security
Please reload this pagehttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694
Insights https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/pulse
Code https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server
Issues https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues
Pull requests https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/pulls
Discussions https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/discussions
Actions https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/actions
Projects https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/projects
Security https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/security
Insights https://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-lsp/python-lsp-server/issues/694
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-lsp/python-lsp-server/issues/694
rename issuehttps://patch-diff.githubusercontent.com/python-lsp/python-lsp-server/issues/694#top
https://github.com/sancelot
https://github.com/sancelot
sancelothttps://github.com/sancelot
on Jan 12, 2026https://github.com/python-lsp/python-lsp-server/issues/694#issue-3803803756
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.