René's URL Explorer Experiment


Title: python 3.7 by peterbe · Pull Request #407 · python-hyper/hyper · GitHub

Open Graph Title: python 3.7 by peterbe · Pull Request #407 · python-hyper/hyper

X Title: python 3.7 by peterbe · Pull Request #407 · python-hyper/hyper

Description: I'm getting a suppressed traceback though: Full tox -e py37 output ▶ tox -e py37 GLOB sdist-make: /Users/peterbe/dev/PYTHON/hyper/setup.py py37 inst-nodeps: /Users/peterbe/dev/PYTHON/hyper/.tox/.tmp/package/1/hyper-0.8.0.dev0.zip py37 installed: apipkg==1.5,atomicwrites==1.3.0,attrs==19.1.0,brotlipy==0.7.0,certifi==2019.3.9,cffi==1.12.3,chardet==3.0.4,coverage==4.5.3,execnet==1.6.0,h2==2.6.2,hpack==3.0.0,hyper==0.8.0.dev0,hyperframe==3.2.0,idna==2.8,mock==2.0.0,more-itertools==7.0.0,pbr==5.1.3,pluggy==0.9.0,py==1.8.0,pycparser==2.19,pytest==4.4.1,pytest-cov==2.6.1,pytest-forked==1.0.2,pytest-xdist==1.28.0,requests==2.21.0,rfc3986==1.3.1,six==1.12.0,urllib3==1.24.2 py37 run-test-pre: PYTHONHASHSEED='2726258995' py37 run-test: commands[0] | coverage run -m py.test /Users/peterbe/dev/PYTHON/hyper/test/ ================================================================================================ test session starts ================================================================================================ platform darwin -- Python 3.7.3, pytest-4.4.1, py-1.8.0, pluggy-0.9.0 cachedir: .tox/py37/.pytest_cache rootdir: /Users/peterbe/dev/PYTHON/hyper plugins: xdist-1.28.0, forked-1.0.2, cov-2.6.1 collected 303 items test/test_SSLContext.py ..... [ 1%] test/test_abstraction.py .... [ 2%] test/test_cli.py ................................ [ 13%] test/test_headers.py ............................ [ 22%] test/test_http11.py ............................................................. [ 42%] test/test_http20.py . [ 43%] test/test_hyper.py ....Exception in thread Thread-1: Traceback (most recent call last): File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/threading.py", line 917, in _bootstrap_inner self.run() File "/Users/peterbe/dev/PYTHON/hyper/test/server.py", line 103, in run self.server = self._start_server() File "/Users/peterbe/dev/PYTHON/hyper/test/server.py", line 96, in _start_server self.socket_handler(sock) File "/Users/peterbe/dev/PYTHON/hyper/test/test_http20.py", line 21, in socket_handler sock = listener.accept()[0] File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 1166, in accept server_side=True) File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 412, in wrap_socket session=session File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 853, in _create self.do_handshake() File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 1117, in do_handshake self._sslobj.do_handshake() ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1056) .................................................................................... [ 72%] test/test_hyper_SSLContext.py s [ 72%] test/test_import.py s. [ 73%] test/test_integration.py ................................... [ 84%] test/test_integration_http11.py ............ [ 88%] test/test_parser.py .... [ 90%] test/test_socket.py ................. [ 95%] test/test_ssl_socket.py ... [ 96%] test/test_windowmanager.py .......... [100%] ================================================================================================= warnings summary ================================================================================================== hyper/http11/connection.py:13 hyper/http11/connection.py:13 /Users/peterbe/dev/PYTHON/hyper/hyper/http11/connection.py:13: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working from collections import Iterable, Mapping .tox/py37/lib/python3.7/site-packages/hyperframe/flags.py:14 /Users/peterbe/dev/PYTHON/hyper/.tox/py37/lib/python3.7/site-packages/hyperframe/flags.py:14: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working class Flags(collections.MutableSet): hyper/common/headers.py:13 /Users/peterbe/dev/PYTHON/hyper/hyper/common/headers.py:13: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working class HTTPHeaderMap(collections.MutableMapping): test/test_hyper.py::TestHyperConnection::test_closed_connections_are_reset /Users/peterbe/dev/PYTHON/hyper/hyper/http20/connection.py:465: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead log.warn("GoAway frame could not be sent: %s" % e) test/test_hyper.py::TestServerPush::test_reset_pushed_streams_when_push_disabled test/test_hyper.py::TestUpgradingPush::test_reset_pushed_streams_when_push_disabled /Users/peterbe/dev/PYTHON/hyper/hyper/http20/connection.py:843: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead stream_id, e) -- Docs: https://docs.pytest.org/en/latest/warnings.html ================================================================================ 301 passed, 2 skipped, 7 warnings in 10.24 seconds ================================================================================= py37 run-test: commands[1] | coverage report Name Stmts Miss Cover Missing hyper/init.py 13 0 100% hyper/cli.py 143 0 100% hyper/common/init.py 1 0 100% hyper/common/bufsocket.py 89 0 100% hyper/common/connection.py 34 0 100% hyper/common/decoder.py 21 0 100% hyper/common/exceptions.py 25 0 100% hyper/common/headers.py 94 0 100% hyper/common/util.py 27 0 100% hyper/contrib.py 77 0 100% hyper/http11/init.py 1 0 100% hyper/http11/connection.py 200 0 100% hyper/http11/parser.py 35 0 100% hyper/http11/response.py 146 0 100% hyper/http20/init.py 1 0 100% hyper/http20/connection.py 291 0 100% hyper/http20/errors.py 23 0 100% hyper/http20/exceptions.py 14 0 100% hyper/http20/response.py 91 0 100% hyper/http20/stream.py 131 0 100% hyper/http20/util.py 21 0 100% hyper/http20/window.py 27 0 100% hyper/tls.py 47 0 100% TOTAL 1552 0 100% ______________________________________________________________________________________________________ summary ______________________________________________________________________________________________________ py37: commands succeeded congratulations :)

Open Graph Description: I'm getting a suppressed traceback though: Full tox -e py37 output ▶ tox -e py37 GLOB sdist-make: /Users/peterbe/dev/PYTHON/hyper/setup.py py37 inst-nodeps: /Users/peterbe/dev/PYTHON/hyper/.to...

X Description: I'm getting a suppressed traceback though: Full tox -e py37 output ▶ tox -e py37 GLOB sdist-make: /Users/peterbe/dev/PYTHON/hyper/setup.py py37 inst-nodeps: /Users/peterbe/dev/PYTHON/hyper...

Opengraph URL: https://github.com/python-hyper/hyper/pull/407

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:3216ad5c-40d9-0137-ec2a-96370af4ef4e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idEB9A:26BEF2:559BB5:6E5F07:696B0EBF
html-safe-nonce955e79c94dd09f8e1ef5530dc5e4870afdab57bd458ccaf1e12302a9e925ece0
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQjlBOjI2QkVGMjo1NTlCQjU6NkU1RjA3OjY5NkIwRUJGIiwidmlzaXRvcl9pZCI6IjQ4NTg4ODAwNTgzMDM2NDc0MjMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacadb81f9fc11426f4202fba31c71d3c1a3504f06154aabdfb7119c6ac4d19d6b7
hovercard-subject-tagpull_request:273129458
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-hyper/hyper/pull/407/files
twitter:imagehttps://avatars.githubusercontent.com/u/26739?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/26739?s=400&v=4
og:image:altI'm getting a suppressed traceback though: Full tox -e py37 output ▶ tox -e py37 GLOB sdist-make: /Users/peterbe/dev/PYTHON/hyper/setup.py py37 inst-nodeps: /Users/peterbe/dev/PYTHON/hyper/.to...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5f99f7c1d70f01da5b93e5ca90303359738944d8ab470e396496262c66e60b8d
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python-hyper/hyper git https://github.com/python-hyper/hyper.git
octolytics-dimension-user_id13035907
octolytics-dimension-user_loginpython-hyper
octolytics-dimension-repository_id16165969
octolytics-dimension-repository_nwopython-hyper/hyper
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id16165969
octolytics-dimension-repository_network_root_nwopython-hyper/hyper
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
release82560a55c6b2054555076f46e683151ee28a19bc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python-hyper/hyper/pull/407/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-hyper%2Fhyper%2Fpull%2F407%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-hyper%2Fhyper%2Fpull%2F407%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-hyper%2Fhyper
Reloadhttps://github.com/python-hyper/hyper/pull/407/files
Reloadhttps://github.com/python-hyper/hyper/pull/407/files
Reloadhttps://github.com/python-hyper/hyper/pull/407/files
python-hyper https://github.com/python-hyper
hyperhttps://github.com/python-hyper/hyper
Notifications https://github.com/login?return_to=%2Fpython-hyper%2Fhyper
Fork 197 https://github.com/login?return_to=%2Fpython-hyper%2Fhyper
Star 1k https://github.com/login?return_to=%2Fpython-hyper%2Fhyper
Code https://github.com/python-hyper/hyper
Issues 78 https://github.com/python-hyper/hyper/issues
Pull requests 23 https://github.com/python-hyper/hyper/pulls
Actions https://github.com/python-hyper/hyper/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python-hyper/hyper/security
Please reload this pagehttps://github.com/python-hyper/hyper/pull/407/files
Insights https://github.com/python-hyper/hyper/pulse
Code https://github.com/python-hyper/hyper
Issues https://github.com/python-hyper/hyper/issues
Pull requests https://github.com/python-hyper/hyper/pulls
Actions https://github.com/python-hyper/hyper/actions
Security https://github.com/python-hyper/hyper/security
Insights https://github.com/python-hyper/hyper/pulse
peterbehttps://github.com/peterbe
python-hyper:developmenthttps://github.com/python-hyper/hyper/tree/development
Conversation 2 https://github.com/python-hyper/hyper/pull/407
Commits 1 https://github.com/python-hyper/hyper/pull/407/commits
Checks 0 https://github.com/python-hyper/hyper/pull/407/checks
Files changed https://github.com/python-hyper/hyper/pull/407/files
Please reload this pagehttps://github.com/python-hyper/hyper/pull/407/files
python 3.7 https://github.com/python-hyper/hyper/pull/407/files#top
Show all changes 1 commit https://github.com/python-hyper/hyper/pull/407/files
f22ab7b python 3.7 peterbe Apr 24, 2019 https://github.com/python-hyper/hyper/pull/407/commits/f22ab7b20eb03f55f025ce5de5991b4065dab844
Clear filters https://github.com/python-hyper/hyper/pull/407/files
Please reload this pagehttps://github.com/python-hyper/hyper/pull/407/files
Please reload this pagehttps://github.com/python-hyper/hyper/pull/407/files
.travis.yml https://github.com/python-hyper/hyper/pull/407/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485
tox.ini https://github.com/python-hyper/hyper/pull/407/files#diff-ef2cef9f88b4fe09ca3082140e67f5ad34fb65fb6e228f119d3812261ae51449
.travis.ymlhttps://github.com/python-hyper/hyper/pull/407/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485
View file https://github.com/python-hyper/hyper/blob/f22ab7b20eb03f55f025ce5de5991b4065dab844/.travis.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-hyper/hyper/pull/407/{{ revealButtonHref }}
https://github.com/python-hyper/hyper/pull/407/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485
https://github.com/python-hyper/hyper/pull/407/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485
tox.inihttps://github.com/python-hyper/hyper/pull/407/files#diff-ef2cef9f88b4fe09ca3082140e67f5ad34fb65fb6e228f119d3812261ae51449
View file https://github.com/python-hyper/hyper/blob/f22ab7b20eb03f55f025ce5de5991b4065dab844/tox.ini
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-hyper/hyper/pull/407/{{ revealButtonHref }}
https://github.com/python-hyper/hyper/pull/407/files#diff-ef2cef9f88b4fe09ca3082140e67f5ad34fb65fb6e228f119d3812261ae51449
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.