summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2015-06-25 19:35:35 -0400
committerLeonard Richardson <leonardr@segfault.org>2015-06-25 19:35:35 -0400
commit52e27b39609df2b801413197d179f78df26cff57 (patch)
tree3246f7f5069496083257965edbfa9202cebbd136 /NEWS.txt
parent04dbc847a97728ffcba0be6dc3af2f64682cd199 (diff)
downloadbeautifulsoup4-52e27b39609df2b801413197d179f78df26cff57.tar.gz
In Python 3, __str__ now returns a Unicode string instead
of a bytestring. [bug=1420131]
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 17abf99..768b96f 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,5 +1,10 @@
= 4.4.0 (Unreleased) =
+* __repr__ now returns an ASCII bytestring in Python 2, and a Unicode
+ string in Python 3, instead of a UTF8-encoded bytestring in both
+ versions. In Python 3, __str__ now returns a Unicode string instead
+ of a bytestring. [bug=1420131]
+
* Started using a standard MIT license. [bug=1294662]
* Added a Chinese translation of the documentation by Delong .w.
@@ -13,10 +18,6 @@
* Fixed yet another bug that caused a disconnected tree when html5lib
copied an element from one part of the tree to another. [bug=1270611]
-* __repr__ now returns an ASCII bytestring in Python 2, and a Unicode
- string in Python 3, instead of a UTF8-encoded bytestring in both
- versions. [bug=1420131]
-
* The select() method now supports selector grouping. Patch by
Francisco Canas [bug=1191917]