Issue3624
Created on 2008-08-20 23:04 by voket, last changed 2008-08-21 06:58 by georg.brandl.
|
msg71590 - (view) |
Author: Matt Aasted (voket) |
Date: 2008-08-20 23:04 |
|
In current, future and past documentation, the valid escape sequence \0
(equivalent to \x00) is missing from the list of possible escape
sequences in the documentation. As far as I can tell, it is not a case
covered by any of the other elements in the list, and is valid python
though I have only tested current (2.5.2) for it.
Current version can be found here: http://docs.python.org/ref/strings.html
|
|
msg71609 - (view) |
Author: Georg Brandl (georg.brandl) |
Date: 2008-08-21 06:58 |
|
The \0 falls under this case:
\ooo Character with octal value ooo
where the note says "As in Standard C, up to three octal digits are
accepted. "
|
|
| Date |
User |
Action |
Args |
| 2008-08-21 06:58:19 | georg.brandl | set | status: open -> closed resolution: works for me messages:
+ msg71609 |
| 2008-08-20 23:04:03 | voket | create | |
|