-
-
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
Assertion error StreamParser class when using Python3.4.1-8 #131
Labels
Comments
Ouch. Yeah. This just hit me pretty hard too. It'd be great to get this fixed. The suggested fix works here. Any chance we could get a hotfix? |
paultag
added a commit
to paultag/moxie
that referenced
this issue
Aug 1, 2014
... until aio-libs/aiohttp#131 is fixed.
fixed |
Thanks, y'all! 💃 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I'm developing a url checker using aiohttp (https://github.com/riverrun/alinkcheck).
After upgrading Py3 to 3.4.1-8 (on Ubuntu 14.10), I was getting assertion errors complaining about the StreamParser (in parsers.py) not being a StreamReader.
In my case, I edited the parsers.py file and replaced line 71:
class StreamParser:
with
class StreamParser(asyncio.streams.StreamReader):
and with that I now get no errors.
I don't know if that will work for other people, but it seemed to work for me :)
If you need any more info, please let me know.
The text was updated successfully, but these errors were encountered: