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 real

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

2010-01-27 Thread Timur Tabi
pen it with you might have to resort to invoking > 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
pplications dialogue in KDE, at least. I would be sympathetic to this problem if the API were called 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
ra 10 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? --

Re: Help with regex and optional substring in search string

2009-10-14 Thread Timur Tabi
the match. And I want that. The next line of my code is: description = m.group(2).strip() + "\n\n" -- Timur Tabi Linux kernel developer at Freescale -- http://mail.python.org/mailman/listinfo/python-list

Re: Help with regex and optional substring in search string

2009-10-14 Thread Timur Tabi
On Oct 14, 9:51 am, Timur Tabi 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 >

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 p