René's URL Explorer Experiment


Title: `./python -m test test_interpreters test_struct` fails with: KeyError: concurrent.interpreters._queues.UNBOUND · Issue #142414 · python/cpython · GitHub

Open Graph Title: `./python -m test test_interpreters test_struct` fails with: KeyError: concurrent.interpreters._queues.UNBOUND · Issue #142414 · python/cpython

X Title: `./python -m test test_interpreters test_struct` fails with: KeyError: concurrent.interpreters._queues.UNBOUND · Issue #142414 · python/cpython

Description: Bug report Bug description: I routinely use on my Ubuntu machines pyenv and a script to install python versions: Click to view python_ver=3.14.2 # setup pyenv and install latest python # https://github.com/pyenv/pyenv # https://github.co...

Open Graph Description: Bug report Bug description: I routinely use on my Ubuntu machines pyenv and a script to install python versions: Click to view python_ver=3.14.2 # setup pyenv and install latest python # https://gi...

X Description: Bug report Bug description: I routinely use on my Ubuntu machines pyenv and a script to install python versions: Click to view python_ver=3.14.2 # setup pyenv and install latest python # https://gi...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"`./python -m test test_interpreters test_struct` fails with: KeyError: concurrent.interpreters._queues.UNBOUND","articleBody":"# Bug report\n\n### Bug description:\n\nI routinely use on my Ubuntu machines `pyenv` and a script to install python versions:\n\u003cdetails\u003e\u003csummary\u003eClick to view\u003c/summary\u003e\n\n```bash\n python_ver=3.14.2\n\n# setup pyenv and install latest python\n# https://github.com/pyenv/pyenv\n# https://github.com/python/pyperformance\n\nif ! command -v pyenv \u0026\u003e/dev/null; then\n  # dependencies according to pyenv\n  #sudo apt update; sudo apt install -y build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev\n\n  # Workaround missing libmpdec-dev on ubuntu 24.04 (it should be re introduced in ubuntu 26.04):\n  # https://launchpad.net/~ondrej/+archive/ubuntu/php\n  # https://deb.sury.org/\n  sudo add-apt-repository -y ppa:ondrej/php\n\n  # dependencies according to python build doc dropping packages used in CI (ccache, cmake, gdb, inetutils-inetd, lcov, lzma, strace, xvfb)\n  # https://devguide.python.org/getting-started/setup-building/index.html#build-dependencies\n  # https://github.com/python/cpython/blob/main/.github/workflows/posix-deps-apt.sh\n  sudo apt update; sudo apt install -y build-essential pkg-config libb2-dev libbz2-dev libffi-dev libgdbm-dev libgdbm-compat-dev liblzma-dev libncurses5-dev libreadline6-dev libsqlite3-dev libssl-dev lzma-dev tk-dev uuid-dev zlib1g-dev libzstd-dev libmpdec-dev\n\n  pyenv_dir=\"$HOME/.pyenv\"\n  git clone https://github.com/pyenv/pyenv.git \"$pyenv_dir\"\n\n  cat \u003c\u003c 'EOF' \u003e\u003e \"$HOME/.profile\"\n\n# pyenv: keep at the end of the file\nexport PYENV_ROOT=\"$HOME/.pyenv\"\ncommand -v pyenv \u003e/dev/null || export PATH=\"$PYENV_ROOT/bin:$PATH\"\neval \"$(pyenv init -)\"\nEOF\n\n  cat \u003c\u003c 'EOF' \u003e\u003e \"$HOME/.bashrc\"\n\n# pyenv: keep at the end of the file\nexport PYENV_ROOT=\"$HOME/.pyenv\"\ncommand -v pyenv \u003e/dev/null || export PATH=\"$PYENV_ROOT/bin:$PATH\"\neval \"$(pyenv init -)\"\nEOF\n\n  . \"$HOME/.profile\"\n  pushd \"$pyenv_dir\" \u0026\u0026 src/configure \u0026\u0026 make -C src \u0026\u0026 popd\n  #CC=\"clang\" CXX=\"clang++\" LDFLAGS=\"${LDFLAGS:+$LDFLAGS }-fuse-ld=lld\" PYTHON_CONFIGURE_OPTS=\"--enable-optimizations --with-lto --with-tail-call-interp --enable-bolt\" PYTHON_CFLAGS=\"-march=native -mtune=native\" pyenv install \"$python_ver\"\n  CC=\"clang\" CXX=\"clang++\" LDFLAGS=\"${LDFLAGS:+$LDFLAGS }-fuse-ld=lld\" PYTHON_CONFIGURE_OPTS=\"--enable-optimizations --with-lto\" PYTHON_CFLAGS=\"-march=native -mtune=native\" pyenv install \"$python_ver\"\n  #PYTHON_CONFIGURE_OPTS=\"--enable-optimizations --with-lto\" PYTHON_CFLAGS=\"-march=native -mtune=native\" pyenv install \"$python_ver\"\n  pyenv global \"$python_ver\"\nfi\n```\n\u003c/details\u003e\n\n`test_struct` fails in `python3 -m test` with python 3.14.2 (and 3.14.1) with this traceback:\n\u003cdetails\u003e\u003csummary\u003eClick to view\u003c/summary\u003e\n\n```\n0:18:03 load avg: 0.84 [387/491] test_struct\nException in initializer:\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 88, in serialize_unbound\n    flag = _UNBOUND_CONSTANT_TO_FLAG[op]\n           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^\nKeyError: concurrent.interpreters._queues.UNBOUND\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/thread.py\", line 99, in _worker\n    ctx.initialize()\n    ~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/interpreter.py\", line 64, in initialize\n    self.results = interpreters.create_queue(maxsize)\n                   ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 75, in create\n    unbound = _serialize_unbound(unbounditems)\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 56, in _serialize_unbound\n    return _crossinterp.serialize_unbound(unbound)\n           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 90, in serialize_unbound\n    raise NotImplementedError(f'unsupported unbound replacement op {op!r}')\nNotImplementedError: unsupported unbound replacement op concurrent.interpreters._queues.UNBOUND\nException in initializer:\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 88, in serialize_unbound\n    flag = _UNBOUND_CONSTANT_TO_FLAG[op]\n           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^\nKeyError: concurrent.interpreters._queues.UNBOUND\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/thread.py\", line 99, in _worker\n    ctx.initialize()\n    ~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/interpreter.py\", line 64, in initialize\n    self.results = interpreters.create_queue(maxsize)\n                   ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 75, in create\n    unbound = _serialize_unbound(unbounditems)\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 56, in _serialize_unbound\n    return _crossinterp.serialize_unbound(unbound)\n           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 90, in serialize_unbound\n    raise NotImplementedError(f'unsupported unbound replacement op {op!r}')\nNotImplementedError: unsupported unbound replacement op concurrent.interpreters._queues.UNBOUND\nException in initializer:\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 88, in serialize_unbound\n    flag = _UNBOUND_CONSTANT_TO_FLAG[op]\n           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^\nKeyError: concurrent.interpreters._queues.UNBOUND\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/thread.py\", line 99, in _worker\n    ctx.initialize()\n    ~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/interpreter.py\", line 64, in initialize\n    self.results = interpreters.create_queue(maxsize)\n                   ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 75, in create\n    unbound = _serialize_unbound(unbounditems)\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 56, in _serialize_unbound\n    return _crossinterp.serialize_unbound(unbound)\n           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 90, in serialize_unbound\n    raise NotImplementedError(f'unsupported unbound replacement op {op!r}')\nNotImplementedError: unsupported unbound replacement op concurrent.interpreters._queues.UNBOUND\nException in initializer:\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 88, in serialize_unbound\n    flag = _UNBOUND_CONSTANT_TO_FLAG[op]\n           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^\nKeyError: concurrent.interpreters._queues.UNBOUND\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/thread.py\", line 99, in _worker\n    ctx.initialize()\n    ~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/interpreter.py\", line 64, in initialize\n    self.results = interpreters.create_queue(maxsize)\n                   ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 75, in create\n    unbound = _serialize_unbound(unbounditems)\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 56, in _serialize_unbound\n    return _crossinterp.serialize_unbound(unbound)\n           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 90, in serialize_unbound\n    raise NotImplementedError(f'unsupported unbound replacement op {op!r}')\nNotImplementedError: unsupported unbound replacement op concurrent.interpreters._queues.UNBOUND\nException in initializer:\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 88, in serialize_unbound\n    flag = _UNBOUND_CONSTANT_TO_FLAG[op]\n           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^\nKeyError: concurrent.interpreters._queues.UNBOUND\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/thread.py\", line 99, in _worker\n    ctx.initialize()\n    ~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/interpreter.py\", line 64, in initialize\n    self.results = interpreters.create_queue(maxsize)\n                   ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 75, in create\n    unbound = _serialize_unbound(unbounditems)\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_queues.py\", line 56, in _serialize_unbound\n    return _crossinterp.serialize_unbound(unbound)\n           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/interpreters/_crossinterp.py\", line 90, in serialize_unbound\n    raise NotImplementedError(f'unsupported unbound replacement op {op!r}')\nNotImplementedError: unsupported unbound replacement op concurrent.interpreters._queues.UNBOUND\ntest test_struct failed -- Traceback (most recent call last):\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/test/test_struct.py\", line 818, in test_endian_table_init_subinterpreters\n    self.assertListEqual(list(results), [None] * 5)\n                         ~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/_base.py\", line 639, in result_iterator\n    yield _result_or_cancel(fs.pop())\n          ~~~~~~~~~~~~~~~~~^^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/_base.py\", line 311, in _result_or_cancel\n    return fut.result(timeout)\n           ~~~~~~~~~~^^^^^^^^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/_base.py\", line 450, in result\n    return self.__get_result()\n           ~~~~~~~~~~~~~~~~~^^\n  File \"/home/usr00/.pyenv/versions/3.14.2/lib/python3.14/concurrent/futures/_base.py\", line 395, in __get_result\n    raise self._exception\nconcurrent.futures.interpreter.BrokenInterpreterPool: A thread initializer failed, the thread pool is not usable anymore\n\n0:18:04 load avg: 0.84 [387/491/1] test_struct failed (1 error)\n```\n\u003c/details\u003e\n\nTested on Ubuntu 24.04 (gcc 14.2.0 - clang 21.1.8) and Ubuntu 20.04 (gcc 11.4.0), several CPUs.\n\npython 3.14.0 and 3.13.x, bult in the same way, pass smoothly `python3 -m test`\n\n### CPython versions tested on:\n\n3.14\n\n### Operating systems tested on:\n\nLinux\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-142515\n* gh-142553\n* gh-142577\n* gh-144096\n* gh-145184\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/ppigazzini","@type":"Person","name":"ppigazzini"},"datePublished":"2025-12-08T12:16:59.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":24},"url":"https://github.com/142414/cpython/issues/142414"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ddbf007f-85a2-a2b1-fd99-1673805a2cef
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC6DA:372744:38DBA2:4D2083:6A51C108
html-safe-nonce759afee333d9b0bfdf75c7e1b6b116fb90b3f0763b91de73a73e719c20ec43e4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNkRBOjM3Mjc0NDozOERCQTI6NEQyMDgzOjZBNTFDMTA4IiwidmlzaXRvcl9pZCI6IjE4MDg1NzgzMTkxNzk5NDI0OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac30d389ad3e326ab2276e7314cc1854c11b33e7ba2c5538ba52cc00e247ac08c1
hovercard-subject-tagissue:3706130443
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/142414/issue_layout
twitter:imagehttps://opengraph.githubassets.com/596d6512d5829991d7271d33a802c16c5da7c5cea782a160ee8de26809e22b46/python/cpython/issues/142414
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/596d6512d5829991d7271d33a802c16c5da7c5cea782a160ee8de26809e22b46/python/cpython/issues/142414
og:image:altBug report Bug description: I routinely use on my Ubuntu machines pyenv and a script to install python versions: Click to view python_ver=3.14.2 # setup pyenv and install latest python # https://gi...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameppigazzini
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
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
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/142414#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F142414
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%2Fissues%2F142414
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/142414
Reloadhttps://github.com/python/cpython/issues/142414
Reloadhttps://github.com/python/cpython/issues/142414
Please reload this pagehttps://github.com/python/cpython/issues/142414
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/142414
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.7k 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
./python -m test test_interpreters test_struct fails with: KeyError: concurrent.interpreters._queues.UNBOUNDhttps://github.com/python/cpython/issues/142414#top
testsTests in the Lib/test dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22tests%22
topic-subinterpretershttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-subinterpreters%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%22
https://github.com/ppigazzini
ppigazzinihttps://github.com/ppigazzini
on Dec 8, 2025https://github.com/python/cpython/issues/142414#issue-3706130443
gh-142414: Unify UNBOUND in Lib/concurrent/interpreters/_queues.py and Lib/concurrent/interpreters/_crossinterp.py. #142515https://github.com/python/cpython/pull/142515
gh-142414: Remove singleton design pattern in _crossinterp.py #142553https://github.com/python/cpython/pull/142553
gh-142414: Remove singleton design pattern in Lib/concurrent/interpreters/_crossinterp.py. #142577https://github.com/python/cpython/pull/142577
gh-142414: Isolate reloading modules in test_interpreters #144096https://github.com/python/cpython/pull/144096
gh-142414: Make value, not identity, matter for UNBOUND* objects #145184https://github.com/python/cpython/pull/145184
testsTests in the Lib/test dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22tests%22
topic-subinterpretershttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-subinterpreters%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%22
Release and Deferred blockers 🚫https://github.com/orgs/python/projects/2
Subinterpretershttps://github.com/orgs/python/projects/3
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.