René's URL Explorer Experiment


Title: csv: reject reentrant reader advancement by widehyo1 · Pull Request #8324 · RustPython/RustPython · GitHub

Open Graph Title: csv: reject reentrant reader advancement by widehyo1 · Pull Request #8324 · RustPython/RustPython

X Title: csv: reject reentrant reader advancement by widehyo1 · Pull Request #8324 · RustPython/RustPython

Description: Closes #8323 This PR follows our AI policy Summary RustPython's CSV reader allowed an outer next() call to continue parsing after its input iterator re-entered and advanced the same reader. CPython raises csv.Error in this situation to avoid continuing with stale reader state (see CPython gh-145105). Track the reader generation and compare the generation before and after calling the input iterator. If a reentrant call advanced the reader, raise csv.Error("iterator has already advanced the reader"), matching CPython's handling of this regression. import csv class ReentrantIterator: def __init__(self): self.reader = None self.index = 0 def __iter__(self): return self def __next__(self): self.index += 1 if self.index == 1: next(self.reader) return "a,b" if self.index == 2: return "x" raise StopIteration iterator = ReentrantIterator() reader = csv.reader(iterator) iterator.reader = reader print(next(reader)) # before: ['a', 'b'] # after: csv.Error: iterator has already advanced the reader The existing CPython regression test now passes without its expectedFailure marker. Test plan The following validation was completed by the author: Unmarks Test_Csv.test_reader_reentrant_iterator. cargo run --release Lib/test/test_csv.py: 128 tests run, 7 skipped, 18 expected failures, SUCCESS. cargo run -- extra_tests/snippets/stdlib_csv.py: passed. cargo fmt --check: passed. cargo clippy -p rustpython-stdlib --all-targets: passed with unrelated unfulfilled_lint_expectations warnings. The configured workspace test suite passed. Compared the reproducer against CPython 3.14.6. Summary by CodeRabbit Bug Fixes Improved CSV reader reliability by detecting attempts to reuse an already-advanced iterator, preventing incorrect reads. Added a clear error when the CSV reader is advanced unexpectedly during iteration.

Open Graph Description: Closes #8323 This PR follows our AI policy Summary RustPython's CSV reader allowed an outer next() call to continue parsing after its input iterator re-entered and advanced the same reader. C...

X Description: Closes #8323 This PR follows our AI policy Summary RustPython's CSV reader allowed an outer next() call to continue parsing after its input iterator re-entered and advanced the same reade...

Opengraph URL: https://github.com/RustPython/RustPython/pull/8324

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:d688d60d-d939-c7d8-9117-fe610ae533f9
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC9E2:1FB47:2D1960:3CD185:6A61349C
html-safe-nonce8d9404c848003947fb10098f498562efb92fd0ec9475162f4af6d0e9c63073a1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDOUUyOjFGQjQ3OjJEMTk2MDozQ0QxODU6NkE2MTM0OUMiLCJ2aXNpdG9yX2lkIjoiOTA2MTg2NDU5MDk1MTkyMDc5NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacfa477dc7143cf817a683abcf55bfa50da1130a16175388d496eb898ce8afafd3
hovercard-subject-tagpull_request:4085901089
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/RustPython/RustPython/pull/8324/files
twitter:imagehttps://avatars.githubusercontent.com/u/87641474?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/87641474?s=400&v=4
og:image:altCloses #8323 This PR follows our AI policy Summary RustPython's CSV reader allowed an outer next() call to continue parsing after its input iterator re-entered and advanced the same reader. C...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonec5eca2d5d770261725d2d44a57879a5bd9643e5b84204081dc36933ab40e63a2
turbo-cache-controlno-preview
diff-viewunified
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 full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasedac3a1c903b48538720e0bc780047237dd89fd4c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/pull/8324/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F8324%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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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%2FRustPython%2FRustPython%2Fpull%2F8324%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=RustPython%2FRustPython
Reloadhttps://github.com/RustPython/RustPython/pull/8324/files
Reloadhttps://github.com/RustPython/RustPython/pull/8324/files
Reloadhttps://github.com/RustPython/RustPython/pull/8324/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8324/files
RustPython https://github.com/RustPython
RustPythonhttps://github.com/RustPython/RustPython
Notifications https://github.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.5k https://github.com/login?return_to=%2FRustPython%2FRustPython
Star 22.2k https://github.com/login?return_to=%2FRustPython%2FRustPython
Code https://github.com/RustPython/RustPython
Issues 293 https://github.com/RustPython/RustPython/issues
Pull requests 103 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
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality 0 https://github.com/RustPython/RustPython/security
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
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
youknowonehttps://github.com/youknowone
RustPython:mainhttps://github.com/RustPython/RustPython/tree/main
widehyo1:fix-csv-reader-reentrant-iteratorhttps://github.com/widehyo1/RustPython/tree/fix-csv-reader-reentrant-iterator
Conversation 6 https://github.com/RustPython/RustPython/pull/8324
Commits 3 https://github.com/RustPython/RustPython/pull/8324/commits
Checks 26 https://github.com/RustPython/RustPython/pull/8324/checks
Files changed 2 https://github.com/RustPython/RustPython/pull/8324/files
csv: reject reentrant reader advancement https://github.com/RustPython/RustPython/pull/8324/files#top
Show all changes 3 commits https://github.com/RustPython/RustPython/pull/8324/files
25732c1 csv: reject reentrant reader advancement widehyo1 Jul 14, 2026 https://github.com/RustPython/RustPython/pull/8324/commits/25732c16fcf99798a1dce23fa0eb3bc63a5f9d48
0d0f6fb csv: invalidate outer reads after reentry widehyo1 Jul 19, 2026 https://github.com/RustPython/RustPython/pull/8324/commits/0d0f6fb151d0c54e8a151b1b3129cfb2ef779eea
298bb36 csv: generation type conversion(usize to u64) widehyo1 Jul 19, 2026 https://github.com/RustPython/RustPython/pull/8324/commits/298bb36678fe58a077be25cf3d1eef14873be3ca
Clear filters https://github.com/RustPython/RustPython/pull/8324/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8324/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8324/files
test_csv.py https://github.com/RustPython/RustPython/pull/8324/files#diff-dd5e5efc1566b1c1dc988769a04cc403d2416c8af5bf4785bec235d02a780813
csv.rs https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
Lib/test/test_csv.pyhttps://github.com/RustPython/RustPython/pull/8324/files#diff-dd5e5efc1566b1c1dc988769a04cc403d2416c8af5bf4785bec235d02a780813
View file https://github.com/widehyo1/RustPython/blob/298bb36678fe58a077be25cf3d1eef14873be3ca/Lib/test/test_csv.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8324/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8324/files#diff-dd5e5efc1566b1c1dc988769a04cc403d2416c8af5bf4785bec235d02a780813
https://github.com/RustPython/RustPython/pull/8324/files#diff-dd5e5efc1566b1c1dc988769a04cc403d2416c8af5bf4785bec235d02a780813
crates/stdlib/src/csv.rshttps://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
View file https://github.com/widehyo1/RustPython/blob/298bb36678fe58a077be25cf3d1eef14873be3ca/crates/stdlib/src/csv.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8324/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
https://github.com/RustPython/RustPython/pull/8324/files#diff-acf098d7e921238a0873aca66fb246b2f9e424ac9fac0419462c7cbad68c95a8
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8324/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.