René's URL Explorer Experiment


Title: Fix multiline environment variable parsing in .env files by Copilot · Pull Request #928 · microsoft/vscode-python-debugger · GitHub

Open Graph Title: Fix multiline environment variable parsing in .env files by Copilot · Pull Request #928 · microsoft/vscode-python-debugger

X Title: Fix multiline environment variable parsing in .env files by Copilot · Pull Request #928 · microsoft/vscode-python-debugger

Description: Fix multiline environment variable parsing in .env files The envFile parser was truncating quoted multiline values at the first newline. A value like: EXAMPLE_VAR='very long value with new line , we need to get all the lines' Would parse as 'very long value instead of preserving the full multiline content. Changes Made: Analyze the current parseEnvFile and parseEnvLine implementation Implement a stateful parser that handles multiline quoted values Uses character-by-character parsing with state tracking for quotes Preserves newlines within quoted values Handles both single and double quotes Improved escape sequence handling to properly count consecutive backslashes Add comprehensive tests for multiline environment variables Single-quoted multiline values Double-quoted multiline values Escaped newlines (\n) Multiple multiline variables Mix of multiline and single-line values Trailing whitespace preservation Verify the fix works with the example from the issue Tested with actual .env file from the issue Output matches python-dotenv library behavior Address code review feedback Improved escape sequence detection (counts consecutive backslashes) Verified trailing whitespace is preserved correctly Fixed comment about regex 's' flag usage Verified existing tests still pass (lint and build successful) Security check passed (CodeQL found no vulnerabilities) Fixed linter and prettier formatting issues Solution: The fix replaces the simple .split('\n') approach with a state machine that: Tracks whether we're inside quotes (single or double) Preserves newlines when inside quotes Only splits on newlines when not inside quotes Properly handles escaped quotes by counting consecutive backslashes Resets state properly between lines This matches the behavior of the python-dotenv library that the issue mentions works correctly. Testing: All tests pass, including: Original issue example works correctly Multiline values in single and double quotes Escaped newlines (\n sequences) Multiple multiline variables Trailing whitespace preservation Build and lint successful CodeQL security scan passed with no alerts Prettier formatting applied Security Summary: No security vulnerabilities introduced. CodeQL analysis found 0 alerts. Original prompt This section details on the original issue you should resolve Unable to get full environment variable spread on multi line ## Description Using envFile in launch.json file to load env variables from .env file does not load full variable which have multi line. Environment Information Python Debugger extension versions 2025.14.1 Example code import os variable = os.getenv("EXAMPLE_VAR") print("EXAMPLE_VAR:", variable) launch.json { "version": "0.2.0", "configurations": [ { "name": "Python: Debug single file", "request": "launch", "type": "debugpy", "program": "${file}", "console": "integratedTerminal", "envFile": "${workspaceFolder}/example.env" } ] } example.env EXAMPLE_VAR='very long value with new line , we need to get all the lines' Output EXAMPLE_VAR: 'very long value Expected output EXAMPLE_VAR: very long value with new line , we need to get all the lines Using load_dotenv to load .env work as expected import os from dotenv import load_dotenv load_dotenv(dotenv_path="example.env") variable = os.getenv("EXAMPLE_VAR") print("EXAMPLE_VAR:", variable) ## Output EXAMPLE_VAR: very long value with new line , we need to get all the lines Result with env load from launch.json Result with env load from load_dotenv Investigate if multiline environment variables are passable through DAP and whether or not the extension is expanding them correctly. Comments on the Issue (you are @copilot in this section) @eleanorjboyd is this with or without the python environments extension installed? Can you try disabling it and see if that makes a difference Fixes #850 ✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Open Graph Description: Fix multiline environment variable parsing in .env files The envFile parser was truncating quoted multiline values at the first newline. A value like: EXAMPLE_VAR='very long value with new line...

X Description: Fix multiline environment variable parsing in .env files The envFile parser was truncating quoted multiline values at the first newline. A value like: EXAMPLE_VAR='very long value with new ...

Opengraph URL: https://github.com/microsoft/vscode-python-debugger/pull/928

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:b927a240-aa58-2598-63da-3edca5d79a10
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE64E:395B76:48ABA4:5E7F50:697F420F
html-safe-nonce0172e61f7c080780fe602814578aa4bcbdfa3af32f3f9157aeb3f991797ab33f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNjRFOjM5NUI3Njo0OEFCQTQ6NUU3RjUwOjY5N0Y0MjBGIiwidmlzaXRvcl9pZCI6IjcyODA3MDYwNDI0NjE3MjE3NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac39ad40473184e4d58a6e03bf8a04a7a919e2c409828d286b644ec4c5287eb70b
hovercard-subject-tagpull_request:3175445693
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/microsoft/vscode-python-debugger/pull/928/files
twitter:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
og:image:altFix multiline environment variable parsing in .env files The envFile parser was truncating quoted multiline values at the first newline. A value like: EXAMPLE_VAR='very long value with new line...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None60279d4097367e16897439d16d6bbe4180663db828c666eeed2656988ffe59f6
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/microsoft/vscode-python-debugger git https://github.com/microsoft/vscode-python-debugger.git
octolytics-dimension-user_id6154722
octolytics-dimension-user_loginmicrosoft
octolytics-dimension-repository_id615045081
octolytics-dimension-repository_nwomicrosoft/vscode-python-debugger
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id615045081
octolytics-dimension-repository_network_root_nwomicrosoft/vscode-python-debugger
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
release7c85641c598ad130c74f7bcc27f58575cac69551
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode-python-debugger%2Fpull%2F928%2Ffiles
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%2Fmicrosoft%2Fvscode-python-debugger%2Fpull%2F928%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=microsoft%2Fvscode-python-debugger
Reloadhttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Reloadhttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Reloadhttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
microsoft https://patch-diff.githubusercontent.com/microsoft
vscode-python-debuggerhttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fmicrosoft%2Fvscode-python-debugger
Fork 90 https://patch-diff.githubusercontent.com/login?return_to=%2Fmicrosoft%2Fvscode-python-debugger
Star 147 https://patch-diff.githubusercontent.com/login?return_to=%2Fmicrosoft%2Fvscode-python-debugger
Code https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger
Issues 119 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/issues
Pull requests 14 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pulls
Actions https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions
Projects 0 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/projects
Models https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/models
Wiki https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/wiki
Security 0 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/security
Insights https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pulse
Code https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger
Issues https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/issues
Pull requests https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pulls
Actions https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions
Projects https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/projects
Models https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/models
Wiki https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/wiki
Security https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/security
Insights https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fmicrosoft%2Fvscode-python-debugger%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fmicrosoft%2Fvscode-python-debugger%2Fissues%2Fnew%2Fchoose
Copilothttps://patch-diff.githubusercontent.com/apps/copilot-swe-agent
mainhttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/tree/main
copilot/fix-env-variable-multi-linehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/tree/copilot/fix-env-variable-multi-line
Conversation 4 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928
Commits 5 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits
Checks 18 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/checks
Files changed https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Fix multiline environment variable parsing in .env files https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#top
Show all changes 5 commits https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
4b2a2d0 Initial plan Copilot Jan 15, 2026 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits/4b2a2d0ccc329cda0cecf4478d7c748eeb32036a
45a8ecc Fix multiline environment variable parsing in .env files Copilot Jan 15, 2026 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits/45a8ecc66811bfb7c4830158f9ff045a56e2be77
b673e61 Improve escape sequence handling in environment parser Copilot Jan 15, 2026 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits/b673e6103573e015362a9d73526fa1bb02b65512
4bafda0 Update comment for regex 's' flag usage Copilot Jan 15, 2026 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits/4bafda095c5596576c6d1810be942c76774dd6e0
e4a6a92 Fix linter and prettier formatting issues Copilot Jan 15, 2026 https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/commits/e4a6a92c39ebdde16d68ee0d9aec3c8ee307e6df
Clear filters https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
environment.ts https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-d92c19972f3fe1ff9e675b862c110df217e2a99271f47d76580be8f73f4dbc8f
environment.unit.test.ts https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-980d7df8708c4fe068d5fd2c24ca70193801ad5392a1080a297a6b8aa61740c7
src/extension/common/variables/environment.tshttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-d92c19972f3fe1ff9e675b862c110df217e2a99271f47d76580be8f73f4dbc8f
View file https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/blob/e4a6a92c39ebdde16d68ee0d9aec3c8ee307e6df/src/extension/common/variables/environment.ts
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-d92c19972f3fe1ff9e675b862c110df217e2a99271f47d76580be8f73f4dbc8f
rchiodohttps://patch-diff.githubusercontent.com/rchiodo
Jan 15, 2026https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#r2692529867
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
@copilothttps://gh.io/copilot-coding-agent-docs
https://www.npmjs.com/package/envfilehttps://www.npmjs.com/package/envfile
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
Copilothttps://patch-diff.githubusercontent.com/apps/copilot-swe-agent
Jan 15, 2026https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#r2692536527
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-d92c19972f3fe1ff9e675b862c110df217e2a99271f47d76580be8f73f4dbc8f
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-d92c19972f3fe1ff9e675b862c110df217e2a99271f47d76580be8f73f4dbc8f
src/test/unittest/common/environment.unit.test.tshttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/files#diff-980d7df8708c4fe068d5fd2c24ca70193801ad5392a1080a297a6b8aa61740c7
View file https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/blob/e4a6a92c39ebdde16d68ee0d9aec3c8ee307e6df/src/test/unittest/common/environment.unit.test.ts
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433390?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433393?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433398?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433403?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433408?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433412?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433414?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433416?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433436?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433450?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433390?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433393?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433398?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433403?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433408?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433412?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433414?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433416?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433436?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433450?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433390?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433393?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433398?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433403?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433408?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433412?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433414?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433416?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433436?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433450?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433344?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433390?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433393?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433398?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433403?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433408?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433412?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433414?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433416?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433436?pr=928
https://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/actions/runs/21015367244/job/60419433450?pr=928
Please reload this pagehttps://patch-diff.githubusercontent.com/microsoft/vscode-python-debugger/pull/928/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.