summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2015-06-25 07:35:32 -0400
committerLeonard Richardson <leonardr@segfault.org>2015-06-25 07:35:32 -0400
commit0ce55d794c2ed142f70674d2b48e8294ca8b1d22 (patch)
treec0602086d32b5d21017d5aaf01db1d70549f0321 /NEWS.txt
parentfee5d1d8f62254939939eb97ac56d7c4f158e6cf (diff)
__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]
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index ed2d89d..17abf99 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -13,6 +13,10 @@
* 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]