René's URL Explorer Experiment


Title: Inconsistency in Cython object handling · Issue #143908 · python/cpython · GitHub

Open Graph Title: Inconsistency in Cython object handling · Issue #143908 · python/cpython

X Title: Inconsistency in Cython object handling · Issue #143908 · python/cpython

Description: Bug report Bug description: There seems to be no consensus in the codebase on how to handle Cython objects. Both inspect.iscoroutinefunction() and inspect.iscoroutine() are defined in the documentation for async def functions and their o...

Open Graph Description: Bug report Bug description: There seems to be no consensus in the codebase on how to handle Cython objects. Both inspect.iscoroutinefunction() and inspect.iscoroutine() are defined in the documenta...

X Description: Bug report Bug description: There seems to be no consensus in the codebase on how to handle Cython objects. Both inspect.iscoroutinefunction() and inspect.iscoroutine() are defined in the documenta...

Opengraph URL: https://github.com/python/cpython/issues/143908

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Inconsistency in Cython object handling","articleBody":"# Bug report\n\n### Bug description:\n\nThere seems to be no consensus in the codebase on how to handle Cython objects. Both [`inspect.iscoroutinefunction()`](https://docs.python.org/3/library/inspect.html#inspect.iscoroutinefunction) and [`inspect.iscoroutine()`](https://docs.python.org/3/library/inspect.html#inspect.iscoroutine) are defined in the documentation for [`async def`](https://docs.python.org/3/reference/compound_stmts.html#async-def) functions and their objects, respectively. Therefore, the following code should be valid for them:\n\n```python\n#!/usr/bin/env python3\n\nimport inspect\n\n\nasync def coroutine_function() -\u003e None:\n    pass\n\n\ndef main() -\u003e None:\n    print(inspect.iscoroutinefunction(coroutine_function))  # `True`\n    print(inspect.iscoroutine(coro := coroutine_function()))  # `True`\n    coro.close()  # to avoid `RuntimeWarning`\n\n\nif __name__ == \"__main__\":\n    main()\n```\n\nThe same semantics are also expected by [typeshed](https://github.com/python/typeshed), which defines annotations as follows (and thus declares support for introspection):\n\n```python\n...\n@overload\ndef iscoroutinefunction(obj: object) -\u003e TypeGuard[Callable[..., CoroutineType[Any, Any, Any]]]: ...\n...\ndef iscoroutine(object: object) -\u003e TypeIs[CoroutineType[Any, Any, Any]]: ...\n...\n```\n\nHowever, after `cythonize -i -3`, the code changes its behavior:\n\n```python\nTrue  # `inspect.iscoroutinefunction()`\nFalse  # `inspect.iscoroutine()`\n```\n\nThis is because Cython uses its own objects for compiled functions and generators/coroutines/asynchronous generators. `inspect.is\u003cobject\u003e()` returns `True` only for uncompiled objects, as it relies on the [types](https://docs.python.org/3/library/types.html) module, but `inspect.is\u003cobject\u003efunction()` relies on checking function flags and handles function-like objects in a special way (for compatibility with Cython). As a result, we get the contradictory \"coroutine function does not return a coroutine\".\n\nThe problem is even deeper than one might imagine:\n\n1. Cython objects do not actually correspond completely to their counterparts from CPython. See cython/cython#7448.\n2. Mypy avoids using the [types](https://docs.python.org/3/library/types.html) module to infer the return type due to possible incompatibility with Cython. See python/mypy#18635 and python/mypy#20522.\n3. If the user wants to handle objects regardless of whether the module has been compiled or not, they have to come up with their own way of checking objects. See python/cpython#131983.\n\nWhat if we want to define a universal decorator that works for both regular and asynchronous functions? We could use [`inspect.iscoroutinefunction()`](https://docs.python.org/3/library/inspect.html#inspect.iscoroutinefunction), but it has very limited detection (in particular, it cannot detect object with `async def __call__()`), and library developers will only be able to rely on [`inspect.markcoroutinefunction()`](https://docs.python.org/3/library/inspect.html#inspect.markcoroutinefunction) after the Python 3.11's EOF. A frequently suggested alternative is to check the return value's type using [`inspect.isawaitable()`](https://docs.python.org/3/library/inspect.html#inspect.isawaitable), but this is actually shooting oneself in the foot, as it will lead to false positives for future-like objects (such as [asyncio future objects](https://docs.python.org/3/library/asyncio-future.html), which are also awaitable). The most logical solution would be to use [`inspect.iscoroutine()`](https://docs.python.org/3/library/inspect.html#inspect.iscoroutine), but it does not support Cython (and in fact, it is even less useful; see https://github.com/GrahamDumpleton/wrapt/issues/236#issuecomment-3655259023).\n\nIt seems to me that the question of whether the standard library (and related tools) should be Cython-aware has not been fully explored, which leads to such contradictions. I marked the issue as a bug, since it violates the expected behavior for any consistent interpretation.\n\n### CPython versions tested on:\n\n3.9, 3.10, 3.11, 3.12, 3.13, 3.14\n\n### Operating systems tested on:\n\nLinux","author":{"url":"https://github.com/x42005e1f","@type":"Person","name":"x42005e1f"},"datePublished":"2026-01-16T14:16:16.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":7},"url":"https://github.com/143908/cpython/issues/143908"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ab523514-a928-b8ca-b463-e584c7694864
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8D32:FB091:244D47:339C95:6A631E50
html-safe-noncee4723ae9d1b745f05389bece36df281b7f8f3ffac8af4569e1a38aafafa1e92c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RDMyOkZCMDkxOjI0NEQ0NzozMzlDOTU6NkE2MzFFNTAiLCJ2aXNpdG9yX2lkIjoiODM5ODc3Mjc0MTk3MDUzMzk2OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac200de2b0f5f81d68464339d55c107dfff5faece950c3c9bc0cc948e24e2afe99
hovercard-subject-tagissue:3822228330
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/cpython/143908/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3c501d559792d611116f30462892fbf4003145e986988eab156115ec5d5b9d13/python/cpython/issues/143908
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3c501d559792d611116f30462892fbf4003145e986988eab156115ec5d5b9d13/python/cpython/issues/143908
og:image:altBug report Bug description: There seems to be no consensus in the codebase on how to handle Cython objects. Both inspect.iscoroutinefunction() and inspect.iscoroutine() are defined in the documenta...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamex42005e1f
hostnamegithub.com
expected-hostnamegithub.com
None1a6c056e02f174fffc096c521ec0ff6fb83e40a2ec8cb8875466ec1524872dd6
turbo-cache-controlno-preview
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
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release6a93e25585f487ddff9e3996c06d5b869d6e1828
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/143908#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F143908
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%2Fpython%2Fcpython%2Fissues%2F143908
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=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/143908
Reloadhttps://github.com/python/cpython/issues/143908
Reloadhttps://github.com/python/cpython/issues/143908
Please reload this pagehttps://github.com/python/cpython/issues/143908
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/143908
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.9k 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.4k 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
Inconsistency in Cython object handlinghttps://github.com/python/cpython/issues/143908#top
https://github.com/x42005e1f
x42005e1fhttps://github.com/x42005e1f
on Jan 16, 2026https://github.com/python/cpython/issues/143908#issue-3822228330
inspect.iscoroutinefunction()https://docs.python.org/3/library/inspect.html#inspect.iscoroutinefunction
inspect.iscoroutine()https://docs.python.org/3/library/inspect.html#inspect.iscoroutine
async defhttps://docs.python.org/3/reference/compound_stmts.html#async-def
typeshedhttps://github.com/python/typeshed
typeshttps://docs.python.org/3/library/types.html
[BUG] inspect.get*state() does not work for compiled objects on Python ≥3.11 cython/cython#7448https://github.com/cython/cython/issues/7448
typeshttps://docs.python.org/3/library/types.html
mypy should use CoroutineType instead of Coroutine for return types of async def functions mypy#18635https://github.com/python/mypy/issues/18635
Allow types.GeneratorType to be used instead of collections.abc.Generator as the return type of generator functions mypy#20522https://github.com/python/mypy/issues/20522
Add a collection.abc.Function ABC for function-like objects #131983https://github.com/python/cpython/issues/131983
inspect.iscoroutinefunction()https://docs.python.org/3/library/inspect.html#inspect.iscoroutinefunction
inspect.markcoroutinefunction()https://docs.python.org/3/library/inspect.html#inspect.markcoroutinefunction
inspect.isawaitable()https://docs.python.org/3/library/inspect.html#inspect.isawaitable
asyncio future objectshttps://docs.python.org/3/library/asyncio-future.html
inspect.iscoroutine()https://docs.python.org/3/library/inspect.html#inspect.iscoroutine
GrahamDumpleton/wrapt#236 (comment)https://github.com/GrahamDumpleton/wrapt/issues/236#issuecomment-3655259023
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.