1
vote
Python - When to use file vs open
Only ever use open() for opening files. file() is actually being removed in 3.0, and it's deprecated at the moment. They've had a sort of strange relationship, but file() is going now, so there's n …
0
votes
Python-passing variable between classes
All you need is a reference. It's not really a simple problem that I can give some one-line solution to (other than a simple ugly global that would probably break something else), but one of progra …
5
votes
Iron python, beautiful soup, win32 app
If BeautifulSoup doesn't work on IronPython, it's because IronPython doesn't implement the whole Python language (the same way CPython does). BeautifulSoup is pure-python, no C-extensions, so the o …
3
votes
Python date time, get date 6 months from now
Use the python datetime module to add a timedelta of six months to datetime.today() .
http://docs.python.org/library/da …
3
votes
Do OO design principles apply to Python?
It depends on the pattern. Some things are difficult to do in Python: Singleton is an example. You replace this pattern with another, such as, in the case of Singleton, Borg.
It's not insane to …
0
votes
How can I split a file in python?
Easily. I'd suggest iterating over the file and writing to a new file as necessary, then deleting the original. This answer is fairly intuitive to me, though, so I'm not sure if it's insufficient, …
1
vote
Send Info from Script to Module Python
Yes. You can either send over information when calling functions/classes in module, or you can assign values in module's namespace (not so preferable).
As an example:
# modu …
1
vote
Simple unique non-priority queue system
Why not use a list if you need order (or even a heapq, as was formerly suggested by zacherates before a set was suggested instead) and also use a set to check for duplicates?
…
5
votes
Why not always use psyco for Python code?
When using pyglet I found that I couldn't use psyco on the entire app without making my app non-functional. I could use it in small sections of math-heavy code, of course, but it wasn't necessary, …
3
votes
Python super()
There isn't, really. super() looks at the next class in the MRO (method resolution order, accessed with cls.__mro__) to call the methods. Just calling the base __ini …
5
votes
Is it required to learn Python 2.6 along with Python 3.0 ?
No, 3.x is largely incompatible with 2.x (that was actually a major motivation for doing it). In fact, you probably shouldn't be using 3.0 at all-- it's rather unusable at the moment, and is still …
0
votes
Python persistent Popen
For instance, can I make a call through it and then another one after it without having to concatenate the commands into one long string?
Sounds like you're usi …
8
votes
In Python what is the preferred way to create and manage threads?
When necessary, the threading module and its high-level interface is preferred. Of course, many people suggest that it's r …
3
votes
Python: efficiently join chunks of bytes into one big chunk?
''join() is the best method for joining chunks of data. The alternative boils down to repeated concatenation, which is O(n**2) due to the immutability of strings and the need to create more at ever …
7
votes
What SHOULDN’T Django’s admin interface be used for?
User-specific privileges. I myself had been trying to work it into that-- some of the new (and at least at the time, undocumented) features (from newforms-admin) make it actually possible. Dependin …
