1. Backslash in Py
- Posted by Aku <aku at inbox.as>
Oct 31, 2000
Py version 2.5b October 27, 2000
(c) David Cuny dcuny at lanset.com
Euphoria (c) Rapid Development Software
Dictionary code (c) Jiri Babor
type 'bye' to exit
>>> ? "this\\is\\a\\test"
"thisisa est"
it should be: this\is\a\test
2. Re: Backslash in Py
- Posted by dcuny <dcuny at lanset.com>
Oct 30, 2000
-
Last edited Oct 31, 2000
Aku wrote:
> >>> ? "this\\is\\a\\test"
> "thisisa est"
>
>
> it should be: this\is\a\test
Yup, that's wrong. Looks like the string parsing routine in ox_lex could use a
looking at.
I'll add it to the list. The next release will also give local variables highest
priority, which should take care of some odd behaviors.
Thanks!
-- David Cuny