Re: Windows Interpreter

2008-07-29 Thread Gabriel Genellina
En Tue, 29 Jul 2008 17:00:40 -0300, Terry Reedy <[EMAIL PROTECTED]> escribi�: I just found the QuickEdit option. While in an administrator account (if Python is installed for all users), bring up the menu as specified above, select Properties instead, then the Options tab, then select Qu

Re: Windows Interpreter

2008-07-29 Thread Terry Reedy
Tim Golden wrote: Victor Subervi wrote: def a(): chars = ['\\i0', '\\u0', '\\qc', '\\b0', '\\ql', '\\i', '\\u', '\\b', '\\yz'] rtf_markup = 'viewkind4\uc1\pard\nowidctlpar\qc\i\f0\fs36 Who is like the Beast? Who can wage war against him?\par' for char in chars: c = '(?<=' + char +

Re: Windows Interpreter

2008-07-29 Thread Victor Subervi
I´ll try that. Back online in a week. Victor On 7/29/08, Tim Golden <[EMAIL PROTECTED]> wrote: > > Victor Subervi wrote: > >> def a(): >> chars = ['\\i0', '\\u0', '\\qc', '\\b0', '\\ql', '\\i', '\\u', '\\b', >> '\\yz'] >> rtf_markup = 'viewkind4\uc1\pard\nowidctlpar\qc\i\f0\fs36 Who is like the

Re: Windows Interpreter

2008-07-29 Thread Tim Golden
Victor Subervi wrote: def a(): chars = ['\\i0', '\\u0', '\\qc', '\\b0', '\\ql', '\\i', '\\u', '\\b', '\\yz'] rtf_markup = 'viewkind4\uc1\pard\nowidctlpar\qc\i\f0\fs36 Who is like the Beast? Who can wage war against him?\par' for char in chars: c = '(?<=' + char + ')' test = re.se

Re: Windows Interpreter

2008-07-29 Thread Victor Subervi
def a(): chars = ['\\i0', '\\u0', '\\qc', '\\b0', '\\ql', '\\i', '\\u', '\\b', '\\yz'] rtf_markup = 'viewkind4\uc1\pard\nowidctlpar\qc\i\f0\fs36 Who is like the Beast? Who can wage war against him?\par' for char in chars: c = '(?<=' + char + ')' test = re.search(c, rtf_markup) try

Re: Windows Interpreter

2008-07-29 Thread Tim Golden
Victor Subervi wrote: Hi: I would like to make my windows python interpreter work like my linux one. I want to be able to cut and paste multiple lines of code. You can already do this: what are you trying which isn't working? Now I can only paste one line at a time. I do not want it to inde

Windows Interpreter

2008-07-29 Thread Victor Subervi
Hi: I would like to make my windows python interpreter work like my linux one. I want to be able to cut and paste multiple lines of code. Now I can only paste one line at a time. I do not want it to indent automatically. How can I change this? TIA, Victor -- http://mail.python.org/mailman/listinfo/