Re: PyCharm

2010-10-14 Thread Brian Jones
I've been using PyCharm since the very first EAP releases, and downloaded 1.0 yesterday. I've tested out so many IDEs for use with Python, but PyCharm is the only one that gives me everything I want with just about zero work. Here's what won me over: 1. I can set up nose and coverage as a Run conf

Re: open file on mac

2010-10-08 Thread Brian Jones
On Fri, Oct 8, 2010 at 10:41 AM, tinauser wrote: > hallo, i'm sorry if the question is very stupid, but i cannot > understand what i'm doing wrong here. > > i have this myModule.py > > class Starter: >def init(self,num): >print "hithere!" >print "the answer is ",num >

Re: creating python daemon ?

2010-09-26 Thread Brian Jones
I don't believe you need to be doing all kinds of acrobatics with apache and your python process. On Linux and Unix machines, you can tell the stock syslog daemon that messages sent to a certain syslog facility are to be sent to a named pipe. So, if you tell syslog that, say, the local6 facility sh

Re: upload file using post to https server

2010-09-24 Thread Brian Jones
I just did this yesterday with the 'poster' module after fumbling around with various other ideas, which in the end just produced a lot of code and didn't get me very far. Poster makes this pretty easy, and if you can't install it to the system python path, use 'setup.py install --user' and it'll p

PyWorks Call for Papers extended

2008-08-03 Thread Brian Jones
For those who don't follow PlanetPython, Python Magazine, OnLAMP, or some of the other Python news/blog outlets, PyWorks is a Python conference being held November 12-14, 2008, in Atlanta, by MTA (publisher of Python Magazine). The call for papers has been what I would call a success, but I've noti

Re: PyCon Feedback and Volunteers (Re: Pycon disappointment)

2008-03-16 Thread Brian Jones
On Mar 16, 8:09 pm, [EMAIL PROTECTED] (Aahz) wrote: > If you did not like the programming this year (aside from the sponsor > talks) and you did not participate in organizing PyCon or in delivering > presentations, it is YOUR FAULT. PERIOD. EXCLAMATION POINT! I find this insulting, inexcusable,

Re: Python Magazine: Issue 1 Free!

2007-10-05 Thread Brian Jones
On 10/5/07, Paul McGuire <[EMAIL PROTECTED]> wrote: > > On Oct 5, 9:44 am, Grant Edwards <[EMAIL PROTECTED]> wrote: > > On 2007-10-05, Steve Holden <[EMAIL PROTECTED]> wrote: > > > > > I've just been told by the editors at Python Magazine that the first > > > issue is out. > > > > The first issue i

Re: Why PHP is so much more popular for web-development

2007-07-25 Thread Brian Jones
Steve Holden wrote: > walterbyrd wrote: > >> "Once you start down the Dark path, forever will it dominate your >> desiny. Consume you, it will." >> - Yoda >> >> I'm fairly new to web-development, and I'm trying out different >> technologies. Some people wonder why PHP is so popular, when the >

Class Variable Inheritance

2004-12-08 Thread Brian Jones
I'm sure the solution may be obvious, but this problem is driving me mad. The following is my code: class a(object): mastervar = [] def __init__(self): print 'called a' class b(a): def __init__(self): print 'called b' self.m