René's URL Explorer Experiment


Title: gh-118761: Improve import time by lazy import of `traceback` by donbarbos · Pull Request #129811 · python/cpython · GitHub

Open Graph Title: gh-118761: Improve import time by lazy import of `traceback` by donbarbos · Pull Request #129811 · python/cpython

X Title: gh-118761: Improve import time by lazy import of `traceback` by donbarbos · Pull Request #129811 · python/cpython

Description: TODO: Improve import time modules by lazy import traceback Remove unused import fcntl CPython configure flags: ./configure --enable-optimizations --with-lto --enable-loadable-sqlite-extensions Hyperfine benchmark for import traceback: $ hyperfine --warmup 11 "./python -c 'import traceback'" Benchmark 1: ./python -c 'import traceback' Time (mean ± σ): 17.0 ms ± 0.5 ms [User: 14.2 ms, System: 2.7 ms] Range (min … max): 16.5 ms … 22.7 ms 167 runs Hyperfine benchmarks for updated modules: import _pyrepl experiments (no diff) ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import _pyrepl'" Benchmark 1: ./python -c 'import _pyrepl' Time (mean ± σ): 9.2 ms ± 0.4 ms [User: 7.3 ms, System: 1.8 ms] Range (min … max): 8.6 ms … 14.7 ms 3000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import _pyrepl'" Benchmark 1: ./python -c 'import _pyrepl' Time (mean ± σ): 9.3 ms ± 0.3 ms [User: 7.4 ms, System: 1.8 ms] Range (min … max): 8.7 ms … 14.7 ms 3000 runs import code experiments ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import code'" Benchmark 1: ./python -c 'import code' Time (mean ± σ): 10.0 ms ± 0.5 ms [User: 8.2 ms, System: 1.8 ms] Range (min … max): 9.3 ms … 15.8 ms 3000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import code'" Benchmark 1: ./python -c 'import code' Time (mean ± σ): 17.8 ms ± 0.8 ms [User: 14.9 ms, System: 2.9 ms] Range (min … max): 17.0 ms … 28.7 ms 3000 runs import doctest experiments (no diff) ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 "./python -c 'import doctest'" Benchmark 1: ./python -c 'import doctest' Time (mean ± σ): 34.8 ms ± 0.3 ms [User: 30.2 ms, System: 4.6 ms] Range (min … max): 34.2 ms … 35.7 ms 84 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 "./python -c 'import doctest'" Benchmark 1: ./python -c 'import doctest' Time (mean ± σ): 35.6 ms ± 0.5 ms [User: 30.8 ms, System: 4.8 ms] Range (min … max): 34.9 ms … 37.9 ms 81 runs import logging experiments (no diff) ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 2000 "./python -c 'import logging'" Benchmark 1: ./python -c 'import logging' Time (mean ± σ): 20.9 ms ± 0.7 ms [User: 17.7 ms, System: 3.1 ms] Range (min … max): 20.1 ms … 32.7 ms 2000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 --runs 2000 "./python -c 'import logging'" Benchmark 1: ./python -c 'import logging' Time (mean ± σ): 20.7 ms ± 0.5 ms [User: 17.7 ms, System: 3.0 ms] Range (min … max): 20.0 ms … 30.8 ms 2000 runs import pdb experiments (no diff) ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 2000 "./python -c 'import pdb'" Benchmark 1: ./python -c 'import pdb' Time (mean ± σ): 29.3 ms ± 0.9 ms [User: 25.0 ms, System: 4.2 ms] Range (min … max): 28.2 ms … 37.9 ms 2000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 --runs 2000 "./python -c 'import pdb'" Benchmark 1: ./python -c 'import pdb' Time (mean ± σ): 30.1 ms ± 1.3 ms [User: 25.9 ms, System: 4.2 ms] Range (min … max): 28.8 ms … 44.2 ms 2000 runs import py_compile experiments ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 2000 "./python -c 'import py_compile'" Benchmark 1: ./python -c 'import py_compile' Time (mean ± σ): 11.7 ms ± 0.5 ms [User: 9.6 ms, System: 2.0 ms] Range (min … max): 10.9 ms … 19.5 ms 2000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 "./python -c 'import py_compile'" Benchmark 1: ./python -c 'import py_compile' Time (mean ± σ): 18.2 ms ± 0.5 ms [User: 15.4 ms, System: 2.7 ms] Range (min … max): 17.4 ms … 21.0 ms 159 runs import pydoc experiments ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 "./python -c 'import pydoc'" Benchmark 1: ./python -c 'import pydoc' Time (mean ± σ): 32.6 ms ± 0.4 ms [User: 28.4 ms, System: 4.2 ms] Range (min … max): 31.8 ms … 34.3 ms 87 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 "./python -c 'import pydoc'" Benchmark 1: ./python -c 'import pydoc' Time (mean ± σ): 34.3 ms ± 0.3 ms [User: 30.2 ms, System: 4.1 ms] Range (min … max): 33.5 ms … 35.2 ms 84 runs import unittest experiments ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 "./python -c 'import unittest'" Benchmark 1: ./python -c 'import unittest' Time (mean ± σ): 21.9 ms ± 0.3 ms [User: 18.4 ms, System: 3.4 ms] Range (min … max): 21.3 ms … 22.8 ms 133 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 "./python -c 'import unittest'" Benchmark 1: ./python -c 'import unittest' Time (mean ± σ): 23.3 ms ± 0.3 ms [User: 19.5 ms, System: 3.7 ms] Range (min … max): 22.6 ms … 24.3 ms 123 runs import xmlrpc experiments (no diff) ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import xmlrpc'" Benchmark 1: ./python -c 'import xmlrpc' Time (mean ± σ): 9.1 ms ± 0.4 ms [User: 7.3 ms, System: 1.8 ms] Range (min … max): 8.7 ms … 14.6 ms 3000 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 --runs 3000 "./python -c 'import xmlrpc'" Benchmark 1: ./python -c 'import xmlrpc' Time (mean ± σ): 9.1 ms ± 0.4 ms [User: 7.4 ms, System: 1.7 ms] Range (min … max): 8.6 ms … 19.6 ms 3000 runs ➜ cpython git:(lazy-imports-traceback) ✗ hyperfine --warmup 11 "./python -c 'import xmlrpc'" Benchmark 1: ./python -c 'import xmlrpc' Time (mean ± σ): 8.8 ms ± 0.6 ms [User: 7.3 ms, System: 1.5 ms] Range (min … max): 8.3 ms … 14.5 ms 277 runs ➜ cpython git:(3d3a4beefe) ✗ hyperfine --warmup 11 "./python -c 'import xmlrpc'" Benchmark 1: ./python -c 'import xmlrpc' Time (mean ± σ): 8.7 ms ± 0.2 ms [User: 7.4 ms, System: 1.4 ms] Range (min … max): 8.2 ms … 9.8 ms 303 runs Issue: gh-118761

Open Graph Description: TODO: Improve import time modules by lazy import traceback Remove unused import fcntl CPython configure flags: ./configure --enable-optimizations --with-lto --enable-loadable-sqlite-extensions ...

X Description: TODO: Improve import time modules by lazy import traceback Remove unused import fcntl CPython configure flags: ./configure --enable-optimizations --with-lto --enable-loadable-sqlite-extensions ...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:b81a35d9-6d22-68f9-07df-43310b2ce30a
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idA47A:130E82:2DBE50:3E44D6:6969D2DD
html-safe-nonceb80bd737e2b83ad35bff33f7725ad13efa662ffa02a82bfb12e58c30a14abc04
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNDdBOjEzMEU4MjoyREJFNTA6M0U0NEQ2OjY5NjlEMkREIiwidmlzaXRvcl9pZCI6IjQyMDIwNDc5ODY3MTcwMjA4OTMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac94b785d8bb21a8995a80e95ec4139b0bde9e1cbc9e823e1526b66eb057e19d1d
hovercard-subject-tagpull_request:2322483524
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/129811/files
twitter:imagehttps://avatars.githubusercontent.com/u/47272787?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/47272787?s=400&v=4
og:image:altTODO: Improve import time modules by lazy import traceback Remove unused import fcntl CPython configure flags: ./configure --enable-optimizations --with-lto --enable-loadable-sqlite-extensions ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneacedec8b5f975d9e3d494ddd8f949b0b8a0de59d393901e26f73df9dcba80056
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
release83c08c21cdda978090dc44364b71aa5bc6dcea79
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/129811/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F129811%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
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
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
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/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%2F129811%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/129811/files
Reloadhttps://github.com/python/cpython/pull/129811/files
Reloadhttps://github.com/python/cpython/pull/129811/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/129811/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k 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.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/pull/129811/files
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 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
donbarboshttps://github.com/donbarbos
python:mainhttps://github.com/python/cpython/tree/main
donbarbos:lazy-imports-tracebackhttps://github.com/donbarbos/cpython/tree/lazy-imports-traceback
Conversation 4 https://github.com/python/cpython/pull/129811
Commits 2 https://github.com/python/cpython/pull/129811/commits
Checks 45 https://github.com/python/cpython/pull/129811/checks
Files changed https://github.com/python/cpython/pull/129811/files
Please reload this pagehttps://github.com/python/cpython/pull/129811/files
gh-118761: Improve import time by lazy import of traceback https://github.com/python/cpython/pull/129811/files#top
Show all changes 2 commits https://github.com/python/cpython/pull/129811/files
1fb0687 Always lazy import traceback donbarbos Feb 7, 2025 https://github.com/python/cpython/pull/129811/commits/1fb0687263305d5c7c1334cde36d12b02df4dce9
792c0c5 Update Misc/NEWS.d/next/Library/2025-02-07-17-04-08.gh-issue-118761.h… donbarbos Feb 7, 2025 https://github.com/python/cpython/pull/129811/commits/792c0c50e54cc46105f5f3d1223d922ffb173c3b
Clear filters https://github.com/python/cpython/pull/129811/files
Please reload this pagehttps://github.com/python/cpython/pull/129811/files
Please reload this pagehttps://github.com/python/cpython/pull/129811/files
_threading_handler.py https://github.com/python/cpython/pull/129811/files#diff-8dc87a41ccf1ed41823d216e3dd03e3e5b72d026af4bc9118af001d6fc7435d3
code.py https://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
doctest.py https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
config.py https://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
pdb.py https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
py_compile.py https://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
pydoc.py https://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
case.py https://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
loader.py https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
result.py https://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
server.py https://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
2025-02-07-17-04-08.gh-issue-118761.hkNOEA.rst https://github.com/python/cpython/pull/129811/files#diff-4a98313db90c744b8cebf40d907ad35c1f4a22fbf512e53cc618aef376d94118
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L549
Lib/_pyrepl/_threading_handler.pyhttps://github.com/python/cpython/pull/129811/files#diff-8dc87a41ccf1ed41823d216e3dd03e3e5b72d026af4bc9118af001d6fc7435d3
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/_pyrepl/_threading_handler.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-8dc87a41ccf1ed41823d216e3dd03e3e5b72d026af4bc9118af001d6fc7435d3
https://github.com/python/cpython/pull/129811/files#diff-8dc87a41ccf1ed41823d216e3dd03e3e5b72d026af4bc9118af001d6fc7435d3
https://github.com/python/cpython/pull/129811/files#diff-8dc87a41ccf1ed41823d216e3dd03e3e5b72d026af4bc9118af001d6fc7435d3
Lib/code.pyhttps://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/code.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
https://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
https://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
https://github.com/python/cpython/pull/129811/files#diff-8671c9eeec70141930b48b63414153afa734e72526e755507d204a33da4672f8
Lib/doctest.pyhttps://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/doctest.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/pull/129811/files#diff-ecfd94d9d59a476cc6a2027adf6ec5468dcaaa9c8ad5c6e007ba195ce471db70
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L514
Lib/logging/config.pyhttps://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/logging/config.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
https://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
https://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
https://github.com/python/cpython/pull/129811/files#diff-6b781e2294c88b6a18e9be5d536be2afb74f22593ec5be3de3bc3b507d955755
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L533
Lib/pdb.pyhttps://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/pdb.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
https://github.com/python/cpython/pull/129811/files#diff-98d47941a1bfadcfdfe02973122c83be2940ca6f3b1c32ca8898e7f594d2669d
Lib/py_compile.pyhttps://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/py_compile.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
https://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
https://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
https://github.com/python/cpython/pull/129811/files#diff-4adcb0395f9c8a5f843162578023996e79da4c723207c077ba854d2b5f811d5c
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L539
Lib/pydoc.pyhttps://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/pydoc.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
https://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
https://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
https://github.com/python/cpython/pull/129811/files#diff-d2599cb4ccbf37634c5d3089a2750fc6c92c6c98d2a65861ff13d08ed3e9cff5
Lib/unittest/case.pyhttps://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/unittest/case.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
https://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
https://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
https://github.com/python/cpython/pull/129811/files#diff-c6fe1ffe930def48a6adf1fa99b974737bac586fdacccacd1474e7b2f11370eb
Lib/unittest/loader.pyhttps://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/unittest/loader.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
https://github.com/python/cpython/pull/129811/files#diff-328ee0e63b39a5807e4b92bc167a71a4fd778c213d5d348ec8a8d81a531c3e20
Lib/unittest/result.pyhttps://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/unittest/result.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
https://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
https://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
https://github.com/python/cpython/pull/129811/files#diff-ba8a6f32f39f6047ea998da6ddc7356a30eff06dd2b84d19f9a285c3162d2a93
Lib/xmlrpc/server.pyhttps://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Lib/xmlrpc/server.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
https://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
https://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
https://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
https://github.com/python/cpython/pull/129811/files#diff-d076cc4f144a3e155452cd00e9f11e95d2b299ef414cd6e223018194b77af306
Misc/NEWS.d/next/Library/2025-02-07-17-04-08.gh-issue-118761.hkNOEA.rsthttps://github.com/python/cpython/pull/129811/files#diff-4a98313db90c744b8cebf40d907ad35c1f4a22fbf512e53cc618aef376d94118
View file https://github.com/donbarbos/cpython/blob/792c0c50e54cc46105f5f3d1223d922ffb173c3b/Misc/NEWS.d/next/Library/2025-02-07-17-04-08.gh-issue-118761.hkNOEA.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/129811/{{ revealButtonHref }}
Please reload this pagehttps://github.com/python/cpython/pull/129811/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.