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
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
>
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
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
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
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,
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
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
>
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