[Python-checkins] peps: PEP 223, Changing the Meaning of \x Escapes, assigned to Tim Peters.

georg.brandl python-checkins at python.org
Wed Mar 23 21:25:45 CET 2011


http://hg.python.org/peps/rev/71977bd404e6
changeset:   122:71977bd404e6
user:        Barry Warsaw <barry at python.org>
date:        Mon Aug 21 13:37:45 2000 +0000
summary:
  PEP 223, Changing the Meaning of \x Escapes, assigned to Tim Peters.

This PEP is slated for Python 2.1

files:
  pep-0223.txt |  25 +++++++++++++++++++++++++
  1 files changed, 25 insertions(+), 0 deletions(-)


diff --git a/pep-0223.txt b/pep-0223.txt
new file mode 100644
--- /dev/null
+++ b/pep-0223.txt
@@ -0,0 +1,25 @@
+PEP: 223
+Title: Change the Meaning of \x Escapes
+Version: $Revision$
+Author: tpeters at beopen.com (Tim Peters)
+Python-Version: 2.1
+Status: Draft
+Created: 20-Aug-2000
+Post-History: 
+
+
+Abstract
+
+    Change \x escapes, in both 8-bit and Unicode strings, to consume
+    exactly the two hex digits following.  The proposal views this as
+    correcting an original design flaw, leading to clearer expression
+    in all flavors of string, a cleaner Unicode story, better
+    compatibility with Perl regular expressions, and with minimal risk
+    to existing code.
+
+
+
+Local Variables:
+mode: indented-text
+indent-tabs-mode: nil
+End:

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list