René's URL Explorer Experiment


Title: raise_from does not behave exactly like raise from · Issue #141 · PythonCharmers/python-future · GitHub

Open Graph Title: raise_from does not behave exactly like raise from · Issue #141 · PythonCharmers/python-future

X Title: raise_from does not behave exactly like raise from · Issue #141 · PythonCharmers/python-future

Description: Here's a bit of sample code from [https://www.python.org/dev/peps/pep-3134/](PEP 3134): class DatabaseError(Exception): pass class FileDatabase(object): def __init__(self, filename): try: self.file = open(filename) except IOError as exc:...

Open Graph Description: Here's a bit of sample code from [https://www.python.org/dev/peps/pep-3134/](PEP 3134): class DatabaseError(Exception): pass class FileDatabase(object): def __init__(self, filename): try: self.file...

X Description: Here's a bit of sample code from [https://www.python.org/dev/peps/pep-3134/](PEP 3134): class DatabaseError(Exception): pass class FileDatabase(object): def __init__(self, filename): try: self....

Opengraph URL: https://github.com/PythonCharmers/python-future/issues/141

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"raise_from does not behave exactly like raise from","articleBody":"Here's a bit of sample code from [https://www.python.org/dev/peps/pep-3134/](PEP 3134):\n\n``` python\nclass DatabaseError(Exception):\n    pass\n\nclass FileDatabase(object):\n    def __init__(self, filename):\n        try:\n            self.file = open(filename)\n        except IOError as exc:\n            raise DatabaseError('failed to open') from exc\n\nfd = FileDatabase('dne')\n```\n\nThis, of course, does not work on Python 2. Using Python 3 I get the following output:\n\n```\nTraceback (most recent call last):\n  File \"pepex2.py\", line 7, in __init__\n    self.file = open(filename)\nFileNotFoundError: [Errno 2] No such file or directory: 'dne'\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n  File \"pepex2.py\", line 11, in \u003cmodule\u003e\n    fd = FileDatabase('dne')\n  File \"pepex2.py\", line 9, in __init__\n    raise DatabaseError('failed to open') from exc\n__main__.DatabaseError: failed to open\n```\n\nWhen using `raise_from` for Python2 compatibility\n\n``` python\nfrom future.utils import raise_from\n# [...]\n            raise_from(DatabaseError('failed to open'), exc)\n```\n\nthis output (still with Python3) changes to:\n\n```\nFileNotFoundError: [Errno 2] No such file or directory\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n  File \"pepex2.py\", line 13, in \u003cmodule\u003e\n    fd = FileDatabase('dne')\n  File \"pepex2.py\", line 11, in __init__\n    raise_from(DatabaseError('failed to open'), exc)\n  File \"/home/marc/.virtualenvs/scratch_future3/lib/python3.3/site-packages/future/utils/__init__.py\", line 382, in raise_from\n    exec(execstr, myglobals, mylocals)\n  File \"\u003cstring\u003e\", line 1, in \u003cmodule\u003e\n__main__.DatabaseError: failed to open\n```\n\nNote that the traceback and exception information are missing from the `FileNotFoundError`.\n","author":{"url":"https://github.com/mbr","@type":"Person","name":"mbr"},"datePublished":"2015-04-25T12:11:31.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":7},"url":"https://github.com/141/python-future/issues/141"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8d7842d5-1478-6857-a3e3-a376fb75eed2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC948:2004F6:15014DD:1C26EFD:6969B52D
html-safe-nonce021e64f3882d09bd1f191dd09aa80eeee46cda3a5d2cc8f22b9a23c6ae5b7748
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDOTQ4OjIwMDRGNjoxNTAxNEREOjFDMjZFRkQ6Njk2OUI1MkQiLCJ2aXNpdG9yX2lkIjoiOTI5MTE3NTQ2NjI5MTQ5OTk3IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac056e15067426da8b06933e757027fd665b7dafb0035ef5fbafeecb1a69d0f4fc
hovercard-subject-tagissue:70901235
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/PythonCharmers/python-future/141/issue_layout
twitter:imagehttps://opengraph.githubassets.com/01fd7477fdc046917379197fa29708fde203e042290a279963ab61b97b19af7e/PythonCharmers/python-future/issues/141
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/01fd7477fdc046917379197fa29708fde203e042290a279963ab61b97b19af7e/PythonCharmers/python-future/issues/141
og:image:altHere's a bit of sample code from [https://www.python.org/dev/peps/pep-3134/](PEP 3134): class DatabaseError(Exception): pass class FileDatabase(object): def __init__(self, filename): try: self.file...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamembr
hostnamegithub.com
expected-hostnamegithub.com
Noneb23b8fcc855cd29bb04d6c94aafa62d336bf44eefa8229444eecc968cad03aee
turbo-cache-controlno-preview
go-importgithub.com/PythonCharmers/python-future git https://github.com/PythonCharmers/python-future.git
octolytics-dimension-user_id3365815
octolytics-dimension-user_loginPythonCharmers
octolytics-dimension-repository_id11403699
octolytics-dimension-repository_nwoPythonCharmers/python-future
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id11403699
octolytics-dimension-repository_network_root_nwoPythonCharmers/python-future
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
release0672399d88424758731ec07fe24509e23bb17fb5
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PythonCharmers/python-future/issues/141#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPythonCharmers%2Fpython-future%2Fissues%2F141
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%2FPythonCharmers%2Fpython-future%2Fissues%2F141
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=PythonCharmers%2Fpython-future
Reloadhttps://github.com/PythonCharmers/python-future/issues/141
Reloadhttps://github.com/PythonCharmers/python-future/issues/141
Reloadhttps://github.com/PythonCharmers/python-future/issues/141
PythonCharmers https://github.com/PythonCharmers
python-futurehttps://github.com/PythonCharmers/python-future
Notifications https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Fork 295 https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Star 1.2k https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Code https://github.com/PythonCharmers/python-future
Issues 184 https://github.com/PythonCharmers/python-future/issues
Pull requests 5 https://github.com/PythonCharmers/python-future/pulls
Actions https://github.com/PythonCharmers/python-future/actions
Projects 0 https://github.com/PythonCharmers/python-future/projects
Wiki https://github.com/PythonCharmers/python-future/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/PythonCharmers/python-future/security
Please reload this pagehttps://github.com/PythonCharmers/python-future/issues/141
Insights https://github.com/PythonCharmers/python-future/pulse
Code https://github.com/PythonCharmers/python-future
Issues https://github.com/PythonCharmers/python-future/issues
Pull requests https://github.com/PythonCharmers/python-future/pulls
Actions https://github.com/PythonCharmers/python-future/actions
Projects https://github.com/PythonCharmers/python-future/projects
Wiki https://github.com/PythonCharmers/python-future/wiki
Security https://github.com/PythonCharmers/python-future/security
Insights https://github.com/PythonCharmers/python-future/pulse
New issuehttps://github.com/login?return_to=https://github.com/PythonCharmers/python-future/issues/141
New issuehttps://github.com/login?return_to=https://github.com/PythonCharmers/python-future/issues/141
raise_from does not behave exactly like raise fromhttps://github.com/PythonCharmers/python-future/issues/141#top
0.20https://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%220.20%22
exceptionshttps://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%22exceptions%22
help wantedhttps://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%22help%20wanted%22
https://github.com/mbr
https://github.com/mbr
mbrhttps://github.com/mbr
on Apr 25, 2015https://github.com/PythonCharmers/python-future/issues/141#issue-70901235
0.20https://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%220.20%22
exceptionshttps://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%22exceptions%22
help wantedhttps://github.com/PythonCharmers/python-future/issues?q=state%3Aopen%20label%3A%22help%20wanted%22
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.