4
votes
Python equivalent of PHP’s memory_get_usage()?
A simple solution for Linux and other systems with /proc/self/status is the following code, which I use in a project of mine:
def memory_usage():
"""Memory usage of …
1
vote
How do I refer to a class method outside a function body in Python?
I suggest to cut down on the number of classes -- remember that Python isn't Java. Every time you use @classmethod or @staticmethod you should stop and think about it sinc …
1
vote
Producing documentation for Python classes
I use Sphinx for my project, not only because it looks good, but also because Sphinx encourages writing documentation for humans to read, not just computers.
I find the Ja …
2
votes
how to extract column from a multi-dimentional array
Could it be that you're using a NumPy array? Python has the …
0
votes
Migrating from python 2.4 to python 2.6
I guess you have already found them, but reference and for others, here are the lists of new features in those two versions:
…
4
votes
Runtime directory of Python
Use os.getcwd. This will tell you the current working directory. If you create a new file with …
5
votes
Joining a set of ordered-integer yielding Python iterators.
This solution will compute the intersection of your iterators. It works by advancing the iterators one step at a time and looking for the same value in all of them. When found, such values are yiel …
6
votes
Reclassing an instance in Python
Reclassing instances like this is done in Mercurial (a distributed revision control system) when extensions (plugins) want to change the o …
1
vote
Bash or Python to go backwards?
Try this in Python, it will scan through the file and keep only 3 lines in memory by default:
from collections import deque
def delete(fp, marker, gap=3):
"""Delete lines from …
2
votes
python list comprehensions; compressing a list of lists?
You can concatenate lists using the normal addition operator:
>>> [1, 2] + [3, 4]
[1, 2, 3, 4]
The built-in function sum will add the numbers …
0
votes
How to get repository for core-plot
It looks to me like you have a broken Python installation. However, since you're trying to get Mercurial working, please contact the Mercurial team through the correct channels. Use the
…
10
votes
Python: encryption as means to prevent data tampering
As a general principle, you don't want to use encryption to protect against tampering, instead you want to use a digital signature. Encryption gives you confidentiality, but you ar …
1
vote
How does mercurial work without Python installed?
Others have answered the first question -- let me give a guess about the second part.
Mercurial will normally use some C extensions for speed. You cannot use those with IronPython.
…
11
votes
Python classes special methods
Please take a look at the special method names section in the Python language reference.
…
1
vote
Installing TortoiseHG on Gnome in Ubuntu 9.10?
It appears you are using Mercurial 1.2.1, which does not have the refactoring done in revision 6b5522cb2ad2. That means that …
