-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop aiohttp.get(), aiohttp.options(), aiohttp.head(), aiohttp.post(), aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect() #1593
Comments
AraHaan
changed the title
Drop deprecated functions in client.py
Drop aiohttp.request(), aiohttp.get(), aiohttp.options(), aiohttp.head(), aiohttp.post(), aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect()
Feb 7, 2017
i am not sure about this. |
fafhrd91
changed the title
Drop aiohttp.request(), aiohttp.get(), aiohttp.options(), aiohttp.head(), aiohttp.post(), aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect()
Drop aiohttp.get(), aiohttp.options(), aiohttp.head(), aiohttp.post(), aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect()
Feb 8, 2017
fafhrd91
pushed a commit
that referenced
this issue
Feb 8, 2017
aiohttp.post(), aiohttp.put(), aiohttp.patch(), aiohttp.delete(), and aiohttp.ws_connect() #1593
thanks, Also I just realized I forgot to include to drop aiohttp.request since aiohttp.ClientSession().request basically replaces it as well. @fafhrd91 sorry about that. |
i removed |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
aiohttp.get()
,aiohttp.options()
,aiohttp.head()
,aiohttp.post()
,aiohttp.put()
,aiohttp.patch()
,aiohttp.delete()
, andaiohttp.ws_connect()
are deprecated, use the ones inaiohttp.ClientSession()
instead.People using these deprecated versions had plenty of time to move to the ones in
ClientSession
instead.Remove in v1.4.
The text was updated successfully, but these errors were encountered: