1
vote
Adding a dimension to every element of a numpy.array
Does numpy.dstack do what you want? The first two indexes are the same as the original array, and the new third index is "depth".
>>> import numpy as N
>>> a = N.a …
4
votes
Dynamic/runtime method creation (code generation) in Python
Function docstrings and names are mutable properties. You can do anything you want in the inner function, or even have multiple versions of the inner function that makedynamo() chooses between. No …
2
votes
Python - Test directory permissions
While os.access tries its best to tell if a path is accessible or not, it doesn't claim to be perfect. From the Python docs:
Note: I/O operations may fail even
when access( …
1
vote
Python: Incrementally marshal / pickle an object?
It all your object has to do is be a dictionary of lists, then you may be able to use the shelve module. It prese …
1
vote
condition coverage in python
The very same maintainer of coverage.py has an article discussing a way to get coverag …
2
votes
communication with long running tasks in python
You mention that you can change both the C and Python sides. To avoid having to write any sockets or signal code in C, it might be easiest to break up the large C function into 3 smaller separate f …
3
votes
Most efficient way of loading formatted binary files in Python
struct should work for the header section, while numpy's …
3
votes
python factory functions compared to class
What I like most about nested functions is that it is less verbose than classes. The equivalent class definition to your maker function is:
class clsmaker(object):
def __init__( …
3
votes
an error in taking an input in python
It looks like there are two distinct things happening here. First, as the other posters have noted, the L suffix simply indicates that Python has converted the input value to a long integer. The se …
3
votes
a command like ‘goto ‘ in Python’s bytecode
Loops aren't the only expressions that generate jump bytecodes. if statements and lazy boolean logic make jumps too. For example:
if imeHandle.isCnInput() and GUIDefine …
0
votes
plot line at particular angle and offset
Assuming that your offset is actually a x, y coordinate of the center of the line, and that the line should be a fixed length, then it's a simple matter of trigonometry with matplotlib:
…
1
vote
Changing palette’s of 8-bit .png images using python PIL
If you want to change just the palette, then PIL will just get in your way. Luckily, the PNG file format was designed to be easy to deal with when you only are interested in some of the data chunks …
2
votes
Symmetrically adressable matrix
You're probably better off using a full square numpy matrix. Yes, it wastes half the memory storing redundant values, but rolling your own symmetric matrix in Python will waste even more memory and …
0
votes
How to detect whether two files are identical in Python
If there is nobody maliciously trying to create collisions, then you would have to compare about 264 files before you would expect to see a …
4
votes
validating correct answer with loops in python
The problem here seems to be that you're misunderstanding how GUIs work. It's not like the sequential print/read code that most programming instruction starts with. The GUI widgets only create them …
