You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove incorrect call to pdb in backports.http.client (issue #164)
Previously there was a breakpoint triggered when the first two bytes of the
data were "b'" for debugging purposes. This was being triggered by real data,
e.g. http://data.openaddresses.io/runs/11158/au-queensland.zip. The data was
retrieved correctly, however.
Copy file name to clipboardExpand all lines: docs/whatsnew.rst
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,13 @@ What's New
8
8
What's new in version 0.15.1 (in development)
9
9
=============================================
10
10
11
-
- ``futurize``: Moved exec fixer to stage1. The forward-compatible ``exec(a, b)`` idiom is supported in Python 2.6 and 2.7. See https://docs.python.org/2/reference/simple_stmts.html#exec.
12
-
- Use 3-argument socket.create_connection() backport to restore Py2.6 compatibility in ``urllib.request.urlopen()`` (issue #162)
11
+
- ``futurize``: Moved exec fixer to stage1. The forward-compatible ``exec(a,
12
+
b)`` idiom is supported in Python 2.6 and 2.7. See
0 commit comments