summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 86c5a59..c0fe108 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,12 @@ What's New in Python 3.0a2?
Core and Builtins
-----------------
+- Comparisons between str and str8 now return False/True for ==/!=. sqlite3
+ returns str8 when recreating on object from it's __conform__ value. The
+ struct module returns str8 for all string-related formats. This was true
+ before this change, but becomes more apparent thanks to string comparisons
+ always being False.
+
- Replaced `PyFile_FromFile()` with `PyFile_FromFd(fd, name. mode, buffer,
encoding, newline)`