summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-18 18:24:07 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-18 18:24:07 (GMT)
commit288e89acfc29cf857a8c5d314ba2dd3398a2eae9 (patch)
treee4ca8e317d378207d274157a0dc138e2917cbc1b /Misc
parenta9e073d100c3869231ce7275ff7a810d8db74fc4 (diff)
downloadcpython-288e89acfc29cf857a8c5d314ba2dd3398a2eae9.zip
cpython-288e89acfc29cf857a8c5d314ba2dd3398a2eae9.tar.gz
cpython-288e89acfc29cf857a8c5d314ba2dd3398a2eae9.tar.bz2
Added bytes and b'' as aliases for str and ''
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5060b68..cc74e16 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Issue #1865: Bytes as an alias for str and b"" as an alias "" were
+ added.
+
- sys.float_info / PyFloat_GetInfo: The floating point information
object was converted from a dict to a specialized structseq object.