-
-
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
added _reuse_address and _reuse_port to web_runner.TCPSite.__slots__ #2792
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2792 +/- ##
==========================================
+ Coverage 97.83% 97.99% +0.16%
==========================================
Files 39 39
Lines 7379 7379
Branches 1296 1296
==========================================
+ Hits 7219 7231 +12
+ Misses 53 47 -6
+ Partials 107 101 -6
Continue to review full report at Codecov.
|
Hmm. This is a bug definitely but I wonder why tests are passed without slots. |
I believe this error only happens on 3.7 where now |
You are right. This explains everything. |
Yes, sorry. It was actually python 3.8.0a0 I forgot change the |
It's not useless, it just requires subclasses to be explicit. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a [new issue] for related bugs. |
Hi,
_reuse_address
and_reuse_port
are not included inTCPSite.__slots__
Invokes:
AttributeError: 'TCPSite' object has no attribute '_reuse_address'
Best regards