Search Results

8
votes

What Hosting Service is best for Django applications?

I really, really like Webfaction and I think you'll find a lot of others that do too. In my year with webfaction so far here are th …
2
votes

Django ImageField core=False in newforms admin

The core attribute isn't used anymore. From Brian Rosner's Blog: …
1
vote

Are there any static analysis tools for Python?

There's pylint pychecker …
0
votes

In Python, what does it mean if an object is subscriptable or not?

Off the top of my head, the following are the only built-ins that are subscriptable: string: "foobar"[3] == "b" tuple: (1,2,3,4)[3] == 4 list: [1,2,3,4][3] == 4 dict: {"a": …
11
votes

How do I keep Python print from adding spaces ?

Greg is right-- you can use sys.stdout.write Perhaps, though, you should consider refactoring your algorithm to accumulate a list of <whatevers> and then lst = ['h', ' …
0
votes

Accidental overwrite of OSX Python system framework

This seems like a question for an Apple support group; it has nothing to do with python or programming. …
2
votes

Class attributes with a “calculated” name

class C (object): pass c = C() c.__dict__['foo'] = 42 c.foo # returns 42 …