René's URL Explorer Experiment


Title: py/with macro doesn't bind the return value of __enter__ method · Issue #273 · clj-python/libpython-clj · GitHub

Open Graph Title: py/with macro doesn't bind the return value of __enter__ method · Issue #273 · clj-python/libpython-clj

X Title: py/with macro doesn't bind the return value of __enter__ method · Issue #273 · clj-python/libpython-clj

Description: The py/with macro implementation doesn't correctly follow Python's with statement semantics. According to the Python documentation, the value bound in a with statement should be the return value of calling __enter__() on the context mana...

Open Graph Description: The py/with macro implementation doesn't correctly follow Python's with statement semantics. According to the Python documentation, the value bound in a with statement should be the return value of...

X Description: The py/with macro implementation doesn't correctly follow Python's with statement semantics. According to the Python documentation, the value bound in a with statement should be the return ...

Opengraph URL: https://github.com/clj-python/libpython-clj/issues/273

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"py/with macro doesn't bind the return value of __enter__ method","articleBody":"The `py/with` macro implementation doesn't correctly follow Python's `with` statement semantics. According to the [Python documentation](https://docs.python.org/3/reference/compound_stmts.html#the-with-statement), the value bound in a `with` statement should be the return value of calling `__enter__()` on the context manager:\n\n```python\nmanager = (EXPRESSION)\nenter = type(manager).__enter__\nexit = type(manager).__exit__\nvalue = enter(manager)  # This value should be bound to TARGET\nhit_except = False\n\ntry:\n    TARGET = value  # TARGET gets the return value of enter(manager)\n    SUITE\n...\n```\n\n**Current Implementation**\n\nThe current macro ([with.clj#L45-L63](https://github.com/clj-python/libpython-clj/blob/7f572215a96ac6fb14b5928ee6258b889cdee375/src/libpython_clj2/python/with.clj#L45C1-L63C60)) calls `__enter__` but discards its return value:\n\n```clojure\n(py-fn/call-attr ~varname \"__enter__\" nil)  ; Return value is ignored\n(try\n  (let [retval# (do ~@body)]\n    ...\n```\n\n**Expected Behavior**\n\nThe bound variable should receive the return value of `__enter__()`, not the context manager itself:\n\n```clojure\n(let [enter-result# (py-fn/call-attr ~varname \"__enter__\" nil)]\n  (try\n    (let [~varname enter-result#  ; Rebind to __enter__'s return value\n          retval# (do ~@body)]\n      ...\n```\n\n**Why Current Tests Pass**\n\nThe existing test in [python_test.clj#L167](https://github.com/clj-python/libpython-clj/blob/master/test/libpython_clj2/python_test.clj#L167) uses a `WithObjClass` where `__enter__()` returns `None` (implicitly), and the test methods are called on the original object. This masks the bug.\n\n**Real-World Example**\n\nA common Python pattern that fails with the current implementation:\n\n```python\nwith open('file.txt', 'r') as f:\n    content = f.read()  # f should be the file object returned by __enter__\n```\n\nWith the current macro, `f` would be bound to the unopened file path/manager rather than the file object returned by `__enter__()`.\n\n**Next Steps**\n\n1. Add test cases that verify this behavior (e.g., update `WithObjClass.__enter__` to return a different object, or test with Python's built-in file context manager)\n2. Update the macro to correctly bind the return value of `__enter__()`","author":{"url":"https://github.com/lidorcg","@type":"Person","name":"lidorcg"},"datePublished":"2025-11-10T16:57:54.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/273/libpython-clj/issues/273"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b1c420f6-5bb7-dfb5-8cd1-c7260b990568
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8DF4:1A1383:315C40B:443F3E1:6A60CC13
html-safe-nonce900d6fd66d76279ca84ca67f634096433b867ba0e1e418a7db7085806ffd1f59
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4REY0OjFBMTM4MzozMTVDNDBCOjQ0M0YzRTE6NkE2MENDMTMiLCJ2aXNpdG9yX2lkIjoiNjk5NDYzMTc4NDEwNzM5NjExNSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1e33462730a5d913e5b832c59cffafd9259291ce3d92be3520082703f81b1e70
hovercard-subject-tagissue:3608896885
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/clj-python/libpython-clj/273/issue_layout
twitter:imagehttps://opengraph.githubassets.com/21dc15a918acf0dcfe1853872820c3eb784f6c9a23945a219a91dc8117cb7329/clj-python/libpython-clj/issues/273
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/21dc15a918acf0dcfe1853872820c3eb784f6c9a23945a219a91dc8117cb7329/clj-python/libpython-clj/issues/273
og:image:altThe py/with macro implementation doesn't correctly follow Python's with statement semantics. According to the Python documentation, the value bound in a with statement should be the return value of...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamelidorcg
hostnamegithub.com
expected-hostnamegithub.com
Nonea9556c67fd2e63f5fecafc192915a3b089ef8170a9384ff6b59d7b4a2f6b73f8
turbo-cache-controlno-preview
go-importgithub.com/clj-python/libpython-clj git https://github.com/clj-python/libpython-clj.git
octolytics-dimension-user_id60827878
octolytics-dimension-user_loginclj-python
octolytics-dimension-repository_id187095617
octolytics-dimension-repository_nwoclj-python/libpython-clj
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id187095617
octolytics-dimension-repository_network_root_nwoclj-python/libpython-clj
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
releasef464e59c3a800187a50f3c89c36ee16df9992c1b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/clj-python/libpython-clj/issues/273#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fclj-python%2Flibpython-clj%2Fissues%2F273
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%2Fclj-python%2Flibpython-clj%2Fissues%2F273
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=clj-python%2Flibpython-clj
Reloadhttps://github.com/clj-python/libpython-clj/issues/273
Reloadhttps://github.com/clj-python/libpython-clj/issues/273
Reloadhttps://github.com/clj-python/libpython-clj/issues/273
Please reload this pagehttps://github.com/clj-python/libpython-clj/issues/273
clj-python https://github.com/clj-python
libpython-cljhttps://github.com/clj-python/libpython-clj
Please reload this pagehttps://github.com/clj-python/libpython-clj/issues/273
Notifications https://github.com/login?return_to=%2Fclj-python%2Flibpython-clj
Fork 74 https://github.com/login?return_to=%2Fclj-python%2Flibpython-clj
Star 1.2k https://github.com/login?return_to=%2Fclj-python%2Flibpython-clj
Code https://github.com/clj-python/libpython-clj
Issues 33 https://github.com/clj-python/libpython-clj/issues
Pull requests 4 https://github.com/clj-python/libpython-clj/pulls
Actions https://github.com/clj-python/libpython-clj/actions
Projects https://github.com/clj-python/libpython-clj/projects
Security and quality 0 https://github.com/clj-python/libpython-clj/security
Insights https://github.com/clj-python/libpython-clj/pulse
Code https://github.com/clj-python/libpython-clj
Issues https://github.com/clj-python/libpython-clj/issues
Pull requests https://github.com/clj-python/libpython-clj/pulls
Actions https://github.com/clj-python/libpython-clj/actions
Projects https://github.com/clj-python/libpython-clj/projects
Security and quality https://github.com/clj-python/libpython-clj/security
Insights https://github.com/clj-python/libpython-clj/pulse
py/with macro doesn't bind the return value of __enter__ methodhttps://github.com/clj-python/libpython-clj/issues/273#top
https://github.com/lidorcg
lidorcghttps://github.com/lidorcg
on Nov 10, 2025https://github.com/clj-python/libpython-clj/issues/273#issue-3608896885
Python documentationhttps://docs.python.org/3/reference/compound_stmts.html#the-with-statement
with.clj#L45-L63https://github.com/clj-python/libpython-clj/blob/7f572215a96ac6fb14b5928ee6258b889cdee375/src/libpython_clj2/python/with.clj#L45C1-L63C60
python_test.clj#L167https://github.com/clj-python/libpython-clj/blob/master/test/libpython_clj2/python_test.clj#L167
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.