-
-
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
Correct charset detection #2493
Conversation
@@ -45,3 +45,4 @@ virtualenv.py | |||
.develop | |||
.gitconfig | |||
.flake | |||
.python-version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated with MR. This comes from pyenv
@@ -887,6 +887,14 @@ def test_ctor_charset_without_text(): | |||
assert 'koi8-r' == resp.charset | |||
|
|||
|
|||
def test_ctor_content_type_with_extra(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, what does ctor
stand for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
constructor
Codecov Report
@@ Coverage Diff @@
## master #2493 +/- ##
=======================================
Coverage 97.14% 97.14%
=======================================
Files 39 39
Lines 8098 8098
Branches 1416 1416
=======================================
Hits 7867 7867
Misses 99 99
Partials 132 132
Continue to review full report at Codecov.
|
thanks |
* Content-type parsed correctly in Response * Add .python-version to gitignore * Add changes
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. |
Fix for #2197
Checklist
CONTRIBUTORS.txt
CHANGES
folder<issue_id>.<type>
for example (588.bug)issue_id
change it to the pr id after creating the pr.feature
: Signifying a new feature..bugfix
: Signifying a bug fix..doc
: Signifying a documentation improvement..removal
: Signifying a deprecation or removal of public API..misc
: A ticket has been closed, but it is not of interest to users.