Re: Recursive method in class

2019-10-01 Thread Timur Tabi
Could you please fix your email software so that it shows a legitimate email address in the From: line? Your emails all show this: From: ast All of your emails are being caught in my spam filter because of this address. I would email you privately, but I know n...@gmail.com isn't your

Re: I really need webbrowser.open('file://') to open a web browser

2010-01-27 Thread Timur Tabi
a command line via subprocess.Popen. But that only works if I know which application to open. -- Timur Tabi Linux kernel developer at Freescale -- http://mail.python.org/mailman/listinfo/python-list

Re: I really need webbrowser.open('file://') to open a web browser

2010-01-18 Thread Timur Tabi
desktop.open(...). But it's called webbrowser.open(), so it has to be certain that a web browser is being at all times. IMHO, any other behavior is a bug. -- Timur Tabi Linux kernel developer at Freescale -- http://mail.python.org/mailman/listinfo/python-list

I really need webbrowser.open('file://') to open a web browser

2010-01-15 Thread Timur Tabi
system, it opens a text editor instead. On Python 2.5, it opens the default web browser. This is a problem because my Python script creates a local HTML file and I want it displayed on the web browser. So is there any way to force webbrowser.open() to always use an actual web browser? -- Timur

Help with regex and optional substring in search string

2009-10-14 Thread Timur Tabi
I'm having trouble creating a regex pattern that matches a string that has an optional substring in it. What I'm looking for is a pattern that matches both of these strings: Subject: [PATCH 08/18] This is the patch name Subject: This is the patch name What I want is to extract the This is the

Re: Help with regex and optional substring in search string

2009-10-14 Thread Timur Tabi
On Oct 14, 9:51 am, Timur Tabi timur.t...@gmail.com wrote: I'm having trouble creating a regex pattern that matches a string that has an optional substring in it.  What I'm looking for is a pattern that matches both of these strings: Subject: [PATCH 08/18] This is the patch name Subject

Re: Help with regex and optional substring in search string

2009-10-14 Thread Timur Tabi
() + \n\n -- Timur Tabi Linux kernel developer at Freescale -- http://mail.python.org/mailman/listinfo/python-list