Dana Mon, 7 Feb 2011 10:02:05 -0800 (PST),
Ian kaze:
> self.tables = re.split(r'(?:\r\n){2,}|\r{2,}|\n{2,}', bulk)
Thanks!
I tried without "?:", but it didn't work. Can you tell me why is it
important that group is noncapturing?
--
"Now the storm has passed over me
I'm left to drift on a dea
Dana Mon, 07 Feb 2011 19:20:38 +0100,
Peter Otten <__pete...@web.de> kaze:
> with open(filename, "U") as f:
Oh, fabulous. Thanks!
--
"Now the storm has passed over me
I'm left to drift on a dead calm sea
And watch her forever through the cracks in the beams
Nailed across the doorways of the bed
Hello everybody,
I'd like to split a file by double newlines, but portably. Now,
splitting by one or more newlines is relatively easy:
self.tables = re.split("[\r\n]+", bulk)
But, how can I split on double newlines? I tried several approaches,
but none worked...
--
"Now the storm has passed ov
Dana Sat, 5 Feb 2011 14:13:11 -0800,
Dan Stromberg kaze:
> IIRC, this is an instance of what's called "source routing", and was
> largely shut off after network admins realized it was a security
> issue.
>
> Of course, if you have root/administrator permission, you could
> probably do it. But if
Is there a way to create a TCP connection using a gateway of my
choice?
I have a regular user account on a WinXP machine. It has a DNS server
and default gateway configured, and that DNS server and default
gateway don't see the rest of the Internet, just the local
network. But, I know an IP addres
Dana Mon, 25 Oct 2010 09:38:42 -0500,
Tim Chase kaze:
> While a dirty hack for which I'd tend to smack anybody who used
> it...you *can* assign to instance.__class__
Wow! Python never stops to amaze me.
> If it breaks you get to keep all the parts :)
Yes, I can see great potential for shit hi
Hi everybody,
I need to downcast an object, and I've read repeatedly that if you
need to downcast, you did something wrong in the design phase. So,
instead of asking how do you downcast in python, let me explain my
situation.
I have a 2-pass parser. 1st pass ends up with a bunch of superclass
obj
Dana Sun, 17 Oct 2010 15:36:13 -0400,
Benjamin Kaplan kaze:
> On Sun, Oct 17, 2010 at 3:04 PM, Nikola Skoric wrote:
> You're trying to write Unicode to a file. But there's no such thing as
/snip
> .encode("cp1252") or whatever encoding you wa
When I execute
n...@rilmir:~/code/simplepyged/docs/examples$ python latex.py
I get expected output (bunch of latex markup).
But, when I add a redirection, I get:
n...@rilmir:~/code/simplepyged/docs/examples$ python latex.py > foo.tex
File "latex.py", line 87, in
print mytemplate.render_uni
I have a superclass Element and a subclass Family. All Family.__init__() does
is run Element.__init__() and self.__parse(). For some reason it seems like
self.__parse() isn't run. Here is the code:
http://github.com/dijxtra/simplepyged/blob/8d5a6d59268f6760352783cce6b97c0b5e75b8be/simplepyged/sim
Dana Sun, 20 Jun 2010 10:53:08 +0200,
Peter Otten <__pete...@web.de> kaze:
> Now in your case village.py is first run as the main script and then
[...]
> In the account module you indirectly raise village.ExceptionWithLongName and
> in __main__ you try to catch __main__.ExceptionWithLongName.
P
Dana 18 Jun 2010 17:45:31 GMT,
Steven D'Aprano kaze:
> Other than that, I notice that your module throws away useful debugging
> information, and replaces it with bland, useless pap of no nutritional
> value:
>
> try:
> import account, fetch, resources, const
> except Exception:
> raise
Dana Fri, 18 Jun 2010 20:01:45 +0200,
Peter Otten <__pete...@web.de> kaze:
> Solution: move your startup code into a separate file and have it import the
> village module.
Excellent, thanks! Everything works now, but I still don't quite get what the
problem is...
> You are importing your main
Hi there,
I have a simple problem and I know how to solve it :-D, but I suspect that
there is a standard solution which is more elegant.
So, here is my problem: I have django app versioned with svn and I
test my trunk on two different machines (one with mysql, another with
sqlite3). How do I remo
I0m a python newbie with PHP background. I've tried to make a web app
from one of my python scripts (which I haven't done before) and I
ended up with:
which works really nice :-D
For some reason I can't find no "quick and dirty python web
programming tutorial for PHP programmers" on google. :-D
The module you are talking about is a python GUI toolkit named WxPython,
which is a port of the cross platform C++ GUI toolkit wxwidgets. It's an
excelent gui toolkit , easy to learn and code on. Well documented and has an
excelent community around it. Here are the links for both sites:
http://www.
If you want to create standalone python applications I'd suggest you to use
PyInstaller which is an excellent application that boundles everything you
need to run your application in a standalone package. It works on windows,
linux and I think mac but i'm not sure.
On Feb 5, 2008 10:25 AM, James
On Feb 4, 2008 8:18 AM, David Cook <[EMAIL PROTECTED]> wrote:
> On 2008-02-03, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> wrote:
> > what would be the best python GUI toolkit, it must be cross platform.
> >
> > i have tried gtk, but it interface are real bad and its coding was
> difficult
> > so i dr
On Jan 8, 2008 7:32 PM, George Maggessy <[EMAIL PROTECTED]> wrote:
> Yeap. It is. I'm looking for something like that app. Smth that I
> could base my future developments on.
>
> On Jan 8, 1:47 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote:
> > On Mon, 07 Jan 2008 22:21:53 -0800, George M
On Jan 9, 2008 5:29 AM, Beema shafreen <[EMAIL PROTECTED]> wrote:
> Hi I am beginner in python. and I am not able to understand the Pickle
> concept in python can. some body explain me about the use of this module,
> few examples. which will help me a lot.
>
> regards
> shafreen
>
> --
> http://m
Dana Mon, 26 Nov 2007 08:50:23 -0800 (PST),
[EMAIL PROTECTED] <[EMAIL PROTECTED]> kaze:
> Sorry I didn't reply sooner. If you're creating a service based on a
> Python file, check out the following links in addition to the book
> Wolfgang mentioned:
>
> http://agiletesting.blogspot.com/2005/09/run
Dana Sun, 25 Nov 2007 13:52:35 -0800 (PST),
[EMAIL PROTECTED] <[EMAIL PROTECTED]> kaze:
> Looks like Microsoft thinks you mis-spelled it.
>
> http://www.microsoft.com/technet/prodtechnol/windows2000serv/reskit/w2000Msgs/3310.mspx?mfr=true
>
> I would check and see if that service is installed on y
I have a very simple win32serviceutil script:
import win32serviceutil, time
win32serviceutil.StartService("burek", "localhost")
time.sleep(10)
exit()
It successfuly imports win32serviceutil, and chokes on StartService:
Traceback (most recent call last):
File "foobar.py", line 3, in ?
win3
Dana Thu, 15 Nov 2007 10:12:11 -0600,
Adam Pletcher <[EMAIL PROTECTED]> kaze:
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On
> Behalf
>> Of [EMAIL PROTECTED]
>> Sent: Thursday, November 15, 2007 9:56 AM
>> To: python-list@python.org
>> Subject: Re: formate
I have been trying to find appropriate way to do get local time in
"-mm-dd hh:mm:ss" format, but the best I got is this:
datetime.datetime.fromtimestamp(time.mktime(time.localtime()))
It seems to me I'm missing a much simpler method, am I?
--
"Now the storm has passed over me
I'm left to drif
I wrote a simple UNIX daemon (using 2 forks) which does a simple job: it
executes a function, waits for some time, and then executes it again. Now
I'd like to port that to Windows. How do I create daemon on Windows (since
I can't use fork)?
--
"Now the storm has passed over me
I'm left to drif
Is there a python library which supports using SOCKS proxy which I
create by "ssh -D port remote-host"? I was trying to use that socket
by SocksiPy, but I get "channel 3: open failed: administratively
prohibited: open failed" on the server side. And I can use that
channel freely with firefox. Any o
On 8/1/07, Robert Dailey <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I'm well aware of the datetime module, however it is really inconsistent
> and useless to me. In order to do any arithmetic on time objects, I have to
> use the 'timedelta' class, which doesn't even allow me to do all the math I
> want
I'm using sgmllib.SGMLParser to parse HTML. I have successfuly parsed start
tags by implementing start_something method. But, now I have to fetch the
string inside the start tag and end tag too. I have been reading through
SGMLParser documentation, but just can't figure that out... can somebody
hel
Hello,
I have a few lines of code retrieving a web page and saving some
variables from it to a log. And everything works nice from command line.
but, when I make a cron job, I get an error:
Your "cron" job on fly
cd $HOME/bin/ ; python newartlog.py ; cd
produced the following output:
Tracebac
In article <[EMAIL PROTECTED]>, Paul Rubin
<http://[EMAIL PROTECTED]> says...
> Nikola Skoric <[EMAIL PROTECTED]> writes:
> > Is there a way to tell the interpreter to display exceptions, even those
> > which were captured with except?
>
> Normally you wou
Is there a way to tell the interpreter to display exceptions, even those
which were captured with except?
--
"Now the storm has passed over me
I'm left to drift on a dead calm sea
And watch her forever through the cracks in the beams
Nailed across the doorways of the bedrooms of my dreams"
--
Hi there,
Is there a way of making 'utf-8' default codec for the whole program, so
I don't have to do .encode('utf-8') every time I print out a string?
--
"Now the storm has passed over me
I'm left to drift on a dead calm sea
And watch her forever through the cracks in the beams
Nailed across t
Many thanks. I know it sounds like a silly question, but it's the
company's laptop etc.
Does Python allow conflicting statements? :)
--
http://mail.python.org/mailman/listinfo/python-list
I'm currently learning Python for my own use.
I'm considering installing it on a work laptop, knowing that it is
non-licensed, distributable software.
However, does it access communication ports? I know the company checks
their ports regularly for activity.
I won't be doing anything very serious
35 matches
Mail list logo