| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
…16839)" This reverts commit 0f3187c. The change broke the backwards compatibility of parsing behavior in a patch release of Python (3.8.1). A decision was taken to revert this patch in 3.8.2. In https://bugs.python.org/issue27657 it was decided that the previous behavior like >>> urlparse('localhost:8080') ParseResult(scheme='', netloc='', path='localhost:8080', params='', query='', fragment='') >>> urlparse('undefined:8080') ParseResult(scheme='', netloc='', path='undefined:8080', params='', query='', fragment='') needs to be preserved in patch releases as number of users rely upon it. Explicitly mention the releases involved with the revert in NEWS. Adopt the wording suggested by @ned-deily.
|
Thanks @ned-deily. I have addressed your comment in 3.8 too. |
Sorry, something went wrong.
Codecov Report
@@ Coverage Diff @@
## 3.8 #18525 +/- ##
==========================================
+ Coverage 82.07% 82.09% +0.02%
==========================================
Files 1919 1918 -1
Lines 582169 576853 -5316
Branches 43731 43737 +6
==========================================
- Hits 477834 473591 -4243
+ Misses 94759 93689 -1070
+ Partials 9576 9573 -3
Continue to review full report at Codecov.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This reverts commit 0f3187c.
The change broke the backward compatibility of parsing behavior in a
patch release of Python (3.8.1). A decision was taken to revert this
patch in 3.8.2.
In https://bugs.python.org/issue27657 it was decided that the previous
behavior like
needs to be preserved in patch releases as number of users rely upon it.
https://bugs.python.org/issue27657