summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-12 21:46:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-12 21:46:19 (GMT)
commit3a5d4cb940d9f06505b0b65916fd9a844bed13e3 (patch)
tree4f76dccee7b943c2d421442240892fe711401053 /Misc
parentb63a450cc4c69c4e8668aa434a37b2aa213e94e0 (diff)
downloadcpython-3a5d4cb940d9f06505b0b65916fd9a844bed13e3.zip
cpython-3a5d4cb940d9f06505b0b65916fd9a844bed13e3.tar.gz
cpython-3a5d4cb940d9f06505b0b65916fd9a844bed13e3.tar.bz2
Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`.
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 4cfccae..d930f15 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #13748: Raw bytes literals can now be written with the ``rb`` prefix
+ as well as ``br``.
+
- Issue #12736: Use full unicode case mappings for upper, lower, and title case.
- Issue #12760: Add a create mode to open(). Patch by David Townshend.