René's URL Explorer Experiment


Title: bpo-35113: Fix inspect.getsource to return correct source for inner classes by tirkarthi · Pull Request #10307 · python/cpython · GitHub

Open Graph Title: bpo-35113: Fix inspect.getsource to return correct source for inner classes by tirkarthi · Pull Request #10307 · python/cpython

X Title: bpo-35113: Fix inspect.getsource to return correct source for inner classes by tirkarthi · Pull Request #10307 · python/cpython

Description: Previous approach used regex along with indentation of the match to return the source code. This caused below issues. This PR proposes usage of ast module to do correct parsing. Issues When a class with same name is defined under different classes. When a class definition is part of a string declaration. When a class definition is part of multiline comment. Examples of incorrect output can be found with https://bugs.python.org/issue35113. This PR also adds returning class decorators as part of the source code instead of just returning the class definition. Inner class example : import inspect class Foo: class Bar: def foo(self): pass class Spam: class Bar: def bar(self): pass print(inspect.getsource(Spam.Bar)) On master $ ./python.exe foo.py class Bar: def foo(self): pass IPython inspect.getsource is also used in lot of tools like IPython and pdb which also return incorrect output due to this ipython Python 3.6.4 (default, Mar 12 2018, 13:42:53) Type 'copyright', 'credits' or 'license' for more information IPython 6.3.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: import foo In [2]: foo.Spam.Bar?? Init signature: foo.Spam.Bar() Docstring: Source: class Bar: def foo(self): pass File: ~/stuff/python/backups/foo.py Type: type $ python3 foo.py > /Users/karthikeyansingaravelan/stuff/python/backups/foo.py(13)() -> if __name__ == "__main__": (Pdb) pdb.getsourcelines(Spam.Bar) ([' class Bar:\n', ' def foo(self):\n', ' pass\n'], 2) With PR $ ./python.exe foo.py class Bar: def bar(self): pass Class decorator example import inspect def foo(cls): return cls @foo @foo class Foo: pass print(inspect.getsource(Foo)) On master $ ./python.exe foo.py class Foo: pass With PR $ ./python.exe foo.py @foo @foo class Foo: pass https://bugs.python.org/issue35113

Open Graph Description: Previous approach used regex along with indentation of the match to return the source code. This caused below issues. This PR proposes usage of ast module to do correct parsing. Issues When a clas...

X Description: Previous approach used regex along with indentation of the match to return the source code. This caused below issues. This PR proposes usage of ast module to do correct parsing. Issues When a clas...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:ec911d4e-6cba-89a3-7f44-4154358301f5
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id89DA:B9479:A1FA95:E68E1B:6A510A91
html-safe-noncec90eee2e0ad4cf71bc2b472e512f563ca6b9f466c4fb1e98e2130e28875c2f5a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4OURBOkI5NDc5OkExRkE5NTpFNjhFMUI6NkE1MTBBOTEiLCJ2aXNpdG9yX2lkIjoiMjU0NjI0MDQ4MjQwMjQzNzc3NyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac95e37e517d91e9f67d6bc52c45e7e8743f0ae978793912e4b9fff1fb84de2c45
hovercard-subject-tagpull_request:228113555
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/10307/files
twitter:imagehttps://avatars.githubusercontent.com/u/3972343?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/3972343?s=400&v=4
og:image:altPrevious approach used regex along with indentation of the match to return the source code. This caused below issues. This PR proposes usage of ast module to do correct parsing. Issues When a clas...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb076e100febaa00374cd89239f915d00dd3187f7c68b12bc2b7688181305344d
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
release2d129404fc45ea64edb1b98567c53e55b395536f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/10307/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F10307%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
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%2Fpull%2F10307%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/10307/files
Reloadhttps://github.com/python/cpython/pull/10307/files
Reloadhttps://github.com/python/cpython/pull/10307/files
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
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
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
tirkarthihttps://github.com/tirkarthi
python:masterhttps://github.com/python/cpython/tree/master
tirkarthi:bpo35113https://github.com/tirkarthi/cpython/tree/bpo35113
Conversation 89 https://github.com/python/cpython/pull/10307
Commits 17 https://github.com/python/cpython/pull/10307/commits
Checks 0 https://github.com/python/cpython/pull/10307/checks
Files changed https://github.com/python/cpython/pull/10307/files
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
bpo-35113: Fix inspect.getsource to return correct source for inner classes https://github.com/python/cpython/pull/10307/files#top
Show all changes 17 commits https://github.com/python/cpython/pull/10307/files
51aa209 Use ast module to find class definition tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/51aa20955ef674a24ea69ef7971e407e608853d4
341933d Add NEWS entry tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/341933df107bb093b359194f1cb544c686ef0936
dbbb38e Fix class with multiple children and move decorator code to the method tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/dbbb38ee98d97aa6d93a6999c54d37a8499824ac
22b9c9c Fix PR comments tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/22b9c9c94e08527adc5843a8dd7a3552f6ea695b
2655b1d Add test for nested functions and async calls tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/2655b1d633d9bec5655080235fa0a802eefcb503
bd51f49 Fix pydoc test since comments are returned now correctly tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/bd51f498f5663af7906a744a8a38cd2a15d1fa59
558895f Set event loop policy as None to fix environment related change tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/558895fbe5f59183f575415c27745c8e732c2eaa
7d99c19 Refactor visit_AsyncFunctionDef and tests tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/7d99c193ab7f16b23f7ee83c3a054d626b7ad3b7
5f84344 Refactor to use local variables and fix tests tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/5f843442716b111b3012b20094e794398311a4f3
8a63f36 Add patch attribution tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/8a63f36d38269b7972c9c8397e400e0d0be282f5
4c7a61b Use self.addCleanup for asyncio tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/4c7a61b3c476b21b6e6c9f0d3ccfe4f17042495a
30865f6 Rename ClassVisitor to ClassFinder and fix asyncio cleanup tirkarthi Nov 3, 2018 https://github.com/python/cpython/pull/10307/commits/30865f60b45cef353c1936225718347e1fca9f88
054c317 Return first class inside conditional in case of multiple definitions… tirkarthi Jan 25, 2019 https://github.com/python/cpython/pull/10307/commits/054c3179ea438456f1490baf541d44f01d509151
26d1c96 Add docstring to make the test correct tirkarthi Jan 25, 2019 https://github.com/python/cpython/pull/10307/commits/26d1c9616dd380b4bfd41751178e2cfada186d18
d7ae710 Modify NEWS entry regarding decorators tirkarthi Jan 25, 2019 https://github.com/python/cpython/pull/10307/commits/d7ae710457be3e8d5c276ef775245b242337d2a3
aef4228 Return decorators too for bpo-15856 tirkarthi May 1, 2019 https://github.com/python/cpython/pull/10307/commits/aef42284a16b477535534f827992b327d9a202b9
797c48d Move ast and the class source code to top. Use proper Exception. tirkarthi May 1, 2019 https://github.com/python/cpython/pull/10307/commits/797c48dd82e37849ea14e7fb907128df49b06ac7
Clear filters https://github.com/python/cpython/pull/10307/files
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
inspect.py https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
inspect_fodder2.py https://github.com/python/cpython/pull/10307/files#diff-93ce41d066e85bf3d2d906387fe2cdbc7e643e01add80012832ef1dc30515851
test_inspect.py https://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
test_pydoc.py https://github.com/python/cpython/pull/10307/files#diff-ae73926bd5950f3b4293553200949f1bcb58bae55d13d81b20d4d82d82912621
2018-11-03-16-18-20.bpo-35113.vwvWKG.rst https://github.com/python/cpython/pull/10307/files#diff-4670627b9d902400a134fcb8b7845bd96f4135e41252b3f7c9da27a042aedeec
Lib/inspect.pyhttps://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
View file https://github.com/tirkarthi/cpython/blob/797c48dd82e37849ea14e7fb907128df49b06ac7/Lib/inspect.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/10307/{{ revealButtonHref }}
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
https://github.com/python/cpython/pull/10307/files#diff-b89cd06e4637abacb73f2500301ff979a67ad7ecbfa7cf151c7243715898d7ea
Lib/test/inspect_fodder2.pyhttps://github.com/python/cpython/pull/10307/files#diff-93ce41d066e85bf3d2d906387fe2cdbc7e643e01add80012832ef1dc30515851
View file https://github.com/tirkarthi/cpython/blob/797c48dd82e37849ea14e7fb907128df49b06ac7/Lib/test/inspect_fodder2.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/10307/{{ revealButtonHref }}
https://github.com/python/cpython/pull/10307/files#diff-93ce41d066e85bf3d2d906387fe2cdbc7e643e01add80012832ef1dc30515851
matrixisehttps://github.com/matrixise
Nov 4, 2018https://github.com/python/cpython/pull/10307/files#r230577663
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
tirkarthihttps://github.com/tirkarthi
Nov 4, 2018https://github.com/python/cpython/pull/10307/files#r230577869
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
matrixisehttps://github.com/matrixise
Nov 4, 2018https://github.com/python/cpython/pull/10307/files#r230577672
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
tirkarthihttps://github.com/tirkarthi
Nov 4, 2018https://github.com/python/cpython/pull/10307/files#r230577900
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/10307/files
Lib/test/test_inspect.pyhttps://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
View file https://github.com/tirkarthi/cpython/blob/797c48dd82e37849ea14e7fb907128df49b06ac7/Lib/test/test_inspect.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/10307/{{ revealButtonHref }}
https://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
https://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
https://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
https://github.com/python/cpython/pull/10307/files#diff-cd0b5ed704ccdad2d507d4f756ac2a9b391e0c9bbb5554baf851dbebd8b5e618
Lib/test/test_pydoc.pyhttps://github.com/python/cpython/pull/10307/files#diff-ae73926bd5950f3b4293553200949f1bcb58bae55d13d81b20d4d82d82912621
View file https://github.com/tirkarthi/cpython/blob/797c48dd82e37849ea14e7fb907128df49b06ac7/Lib/test/test_pydoc.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/10307/{{ revealButtonHref }}
https://github.com/python/cpython/pull/10307/files#diff-ae73926bd5950f3b4293553200949f1bcb58bae55d13d81b20d4d82d82912621
https://github.com/python/cpython/pull/10307/files#diff-ae73926bd5950f3b4293553200949f1bcb58bae55d13d81b20d4d82d82912621
Misc/NEWS.d/next/Library/2018-11-03-16-18-20.bpo-35113.vwvWKG.rsthttps://github.com/python/cpython/pull/10307/files#diff-4670627b9d902400a134fcb8b7845bd96f4135e41252b3f7c9da27a042aedeec
View file https://github.com/tirkarthi/cpython/blob/797c48dd82e37849ea14e7fb907128df49b06ac7/Misc/NEWS.d/next/Library/2018-11-03-16-18-20.bpo-35113.vwvWKG.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/10307/{{ revealButtonHref }}
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.