summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2003-02-10 09:57:08 (GMT)
committerJust van Rossum <just@letterror.com>2003-02-10 09:57:08 (GMT)
commit73ffb4aa4e9bb5b31ddd4aebc335e708b3b6de10 (patch)
treedd29d42828e9023c5abbcc17f612e09237abe8d9
parentb9b8e9cf6d0d9b5d4d526f8cbd0601e284397753 (diff)
downloadcpython-73ffb4aa4e9bb5b31ddd4aebc335e708b3b6de10.zip
cpython-73ffb4aa4e9bb5b31ddd4aebc335e708b3b6de10.tar.gz
cpython-73ffb4aa4e9bb5b31ddd4aebc335e708b3b6de10.tar.bz2
mention unicode support in compile, eval and exec
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 24f318c..f0082fa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.3 alpha 2?
Core and builtins
-----------------
+- compile(), eval() and the exec statement now fully support source code
+ passed as unicode strings.
+
- int subclasses can be initialized with longs if the value fits in an int.
See SF bug #683467.