File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -116,10 +116,16 @@ follows::
116
116
import test.support
117
117
118
118
119
- The newly exposed ``urllib `` submodules are full backports of those from Py3.x.
119
+ The newly exposed ``urllib `` submodules are backports of those from Py3.x.
120
120
This means, for example, that ``urllib.parse.unquote() `` now exists and takes
121
121
an optional ``encoding `` argument on Py2.x as it does on Py3.x.
122
122
123
+ **Limitation: ** Note that the ``http ``-based backports do not currently support
124
+ HTTPS (as of 2015-09-11) because the SSL support changed considerably in Python
125
+ 3.x. If you need HTTPS support, please use this idiom for now::
126
+
127
+ from future.moves.urllib.request import urlopen
128
+
123
129
Backports also exist of the following features from Python 3.4:
124
130
125
131
- ``math.ceil `` returns an int on Py3
You can’t perform that action at this time.
0 commit comments