René's URL Explorer Experiment


Title: gh-151763: Fix OOM-0034 tokenizer offset error handling by zainnadeem786 · Pull Request #151798 · python/cpython · GitHub

Open Graph Title: gh-151763: Fix OOM-0034 tokenizer offset error handling by zainnadeem786 · Pull Request #151798 · python/cpython

X Title: gh-151763: Fix OOM-0034 tokenizer offset error handling by zainnadeem786 · Pull Request #151798 · python/cpython

Description: Summary This PR addresses OOM-0034 from gh-151763. It fixes an out-of-memory (OOM) failure path in the tokenizer offset conversion logic that could lead to: a NULL pointer dereference (access violation), or a tokenizer result being returned while a MemoryError was still pending. Issue _PyPegen_byte_offset_to_character_offset_line() in Parser/pegen.c calls PyUnicode_AsUTF8() and immediately dereferences the returned pointer. Under memory-allocation failure, PyUnicode_AsUTF8() can return NULL with a pending MemoryError. The existing code did not check for this condition before accessing the returned buffer. Example crash path: tokenizeriter_next() └── _get_col_offsets() └── _PyPegen_byte_offset_to_character_offset_line() └── PyUnicode_AsUTF8() └── returns NULL under OOM └── NULL dereference The issue was reproducible with _testcapi.set_nomemory() using non-ASCII source lines that require byte-offset to character-offset conversion. Reproduction Using a CPython debug build and OOM injection: import _testcapi import _tokenize source = "if True:\n \u00e9 = 1\n" it = _tokenize.TokenizerIter( iter(source.splitlines(True)).__next__, extra_tokens=False, ) for _ in range(5): next(it) _testcapi.set_nomemory(2, 3) next(it) Observed result before the fix: Windows fatal exception: access violation RC 3221225477 Further investigation showed that a helper-only NULL check was not sufficient. _get_col_offsets() ignored failure returns from offset-conversion helpers, allowing tokenizeriter_next() to continue execution with a pending MemoryError. This could also result in: SystemError: returned a result with an exception set Root Cause Two independent problems existed: _PyPegen_byte_offset_to_character_offset_line() did not check whether PyUnicode_AsUTF8() failed. _get_col_offsets() ignored failures from: _PyPegen_byte_offset_to_character_offset_line() _PyPegen_byte_offset_to_character_offset_raw() As a result, tokenizer execution could continue after offset conversion had already failed. Fix This PR: Adds a NULL check after PyUnicode_AsUTF8(). Returns -1 when UTF-8 conversion fails. Changes _get_col_offsets() from void to int. Propagates failures from both offset-conversion helpers. Stops token generation immediately when offset conversion fails. Preserves the pending MemoryError. Avoids modifying tokenizer state when offset computation fails. Regression Tests Adds regression coverage in Lib/test/test_tokenize.py. The test: Uses _testcapi.set_nomemory() in a subprocess. Exercises the non-ASCII tokenizer path. Exercises the raw offset-conversion path. Sweeps allocation-failure indexes rather than relying on a single build-specific allocation point. Verifies that OOM conditions produce MemoryError instead of crashes or invalid tokenizer results. Validation Built and tested using a CPython debug build: PCbuild\build.bat -p x64 -c Debug Executed: PCbuild/amd64/python_d.exe -m test test_tokenize Result: 131 tests passed Also verified: git diff --check No whitespace errors were reported. Impact This change converts tokenizer OOM crash paths into correct exception propagation and ensures that allocation failures during column-offset conversion are handled safely and consistently. Addresses OOM-0034 from gh-151763.

Open Graph Description: Summary This PR addresses OOM-0034 from gh-151763. It fixes an out-of-memory (OOM) failure path in the tokenizer offset conversion logic that could lead to: a NULL pointer dereference (access viol...

X Description: Summary This PR addresses OOM-0034 from gh-151763. It fixes an out-of-memory (OOM) failure path in the tokenizer offset conversion logic that could lead to: a NULL pointer dereference (access viol...

Opengraph URL: https://github.com/python/cpython/pull/151798

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:17021053-7aae-8547-3367-4b35c1477149
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idAE16:1F69C6:162A5D:1E0516:6A532FE5
html-safe-nonced6bbb8a889c4ef63ded6be62fd6686b0489f3a114e79409e055f5eea64f43d16
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRTE2OjFGNjlDNjoxNjJBNUQ6MUUwNTE2OjZBNTMyRkU1IiwidmlzaXRvcl9pZCI6IjM0NTYzMDU3OTcxNTEyNzI5MzMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac12b4ffc04531e180a39b39505e6db8d6748d2adbbf22fbc4203cb5e8fa63e84b
hovercard-subject-tagpull_request:3903741777
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/python/cpython/pull/151798/files
twitter:imagehttps://avatars.githubusercontent.com/u/165761530?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/165761530?s=400&v=4
og:image:altSummary This PR addresses OOM-0034 from gh-151763. It fixes an out-of-memory (OOM) failure path in the tokenizer offset conversion logic that could lead to: a NULL pointer dereference (access viol...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
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
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/151798/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F151798%2Ffiles
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%2Fpython%2Fcpython%2Fpull%2F151798%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/pull/151798/files
Reloadhttps://github.com/python/cpython/pull/151798/files
Reloadhttps://github.com/python/cpython/pull/151798/files
Please reload this pagehttps://github.com/python/cpython/pull/151798/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/151798/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.8k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
zainnadeem786https://github.com/zainnadeem786
python:mainhttps://github.com/python/cpython/tree/main
zainnadeem786:fix/oom-0034-tokenizerhttps://github.com/zainnadeem786/cpython/tree/fix/oom-0034-tokenizer
Conversation 1 https://github.com/python/cpython/pull/151798
Commits 1 https://github.com/python/cpython/pull/151798/commits
Checks 52 https://github.com/python/cpython/pull/151798/checks
Files changed 4 https://github.com/python/cpython/pull/151798/files
gh-151763: Fix OOM-0034 tokenizer offset error handling https://github.com/python/cpython/pull/151798/files#top
Show all changes 1 commit https://github.com/python/cpython/pull/151798/files
82b78b0 gh-151763: Fix OOM-0034 tokenizer offset error handling zainnadeem786 Jun 20, 2026 https://github.com/python/cpython/pull/151798/commits/82b78b0be9ebb9eb591097002fa4c118cb6c2251
Clear filters https://github.com/python/cpython/pull/151798/files
Please reload this pagehttps://github.com/python/cpython/pull/151798/files
Please reload this pagehttps://github.com/python/cpython/pull/151798/files
test_tokenize.py https://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
2026-06-20-18-21-28.gh-issue-151763.OOM0034.rst https://github.com/python/cpython/pull/151798/files#diff-0567a03e2f6356267cee69391d43aed64a41f00d77326311c1acbfab2aa89172
pegen.c https://github.com/python/cpython/pull/151798/files#diff-ec9a9d08c5b1d518997db0f5b4795c528a41efc35507d6c2a384eee43f047cb7
Python-tokenize.c https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L313
Lib/test/test_tokenize.pyhttps://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
View file https://github.com/python/cpython/blob/82b78b0be9ebb9eb591097002fa4c118cb6c2251/Lib/test/test_tokenize.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/151798/{{ revealButtonHref }}
https://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
https://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
https://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
https://github.com/python/cpython/pull/151798/files#diff-b07c4f10c75a22e102f114227a0a9b7b763ddda7a330109994e69b29540ea9bb
Misc/NEWS.d/next/Library/2026-06-20-18-21-28.gh-issue-151763.OOM0034.rsthttps://github.com/python/cpython/pull/151798/files#diff-0567a03e2f6356267cee69391d43aed64a41f00d77326311c1acbfab2aa89172
View file https://github.com/python/cpython/blob/82b78b0be9ebb9eb591097002fa4c118cb6c2251/Misc/NEWS.d/next/Library/2026-06-20-18-21-28.gh-issue-151763.OOM0034.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/151798/{{ revealButtonHref }}
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L315
Parser/pegen.chttps://github.com/python/cpython/pull/151798/files#diff-ec9a9d08c5b1d518997db0f5b4795c528a41efc35507d6c2a384eee43f047cb7
View file https://github.com/python/cpython/blob/82b78b0be9ebb9eb591097002fa4c118cb6c2251/Parser/pegen.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/151798/{{ revealButtonHref }}
https://github.com/python/cpython/pull/151798/files#diff-ec9a9d08c5b1d518997db0f5b4795c528a41efc35507d6c2a384eee43f047cb7
https://github.com/python/cpython/pull/151798/files#diff-ec9a9d08c5b1d518997db0f5b4795c528a41efc35507d6c2a384eee43f047cb7
Python/Python-tokenize.chttps://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
View file https://github.com/python/cpython/blob/82b78b0be9ebb9eb591097002fa4c118cb6c2251/Python/Python-tokenize.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/151798/{{ revealButtonHref }}
https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
https://github.com/python/cpython/pull/151798/files#diff-68d96c581022a408dbcf0f48df1126c3a43154ed2dd20b166aa5269ab27f3dcb
Please reload this pagehttps://github.com/python/cpython/pull/151798/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.