HSTCount | Score | Id | Title | Body |
---|---|---|---|---|
9 | 8 | 10123 | How do I treat an integer as an array of bytes in Python? | I'm trying to decode the result of the Python os.wait() function. This returns, according to the Python docs:
How do I decode the exit status indication (which is an integer) to obtain the high and low byte? To be specific, how do I implement the decode function used in the following code snippet:
|
10 | 10 | 10213 | NaN | To answer your general question, you can use bit manipulation techniques:
However, there are also built-in functions for interpreting exit status values:
See also:
|
1 | 0 | 10148 | NaN | The folks before me've nailed it, but if you really want it on one line, you can do this:
EDIT: Had it backwards. |
0 | 10 | 10129 | NaN | This will do what you want:
|
0 | 1 | 10132 | NaN | You can unpack the status using bit-shifting and masking operators.
I'm not a Python programmer, so I hope got the syntax correct. |
0 | 364 | 972 | Adding a Method to an Existing Object Instance | I've read that it is possible to add a method to an existing object (e.g. not in the class definition) in Python, I think this is called Monkey Patching (or in some cases Duck Punching). I understand that it's not always a good decision to do so. But, how might one do this? UPDATE 8/04/2008 00:21:01 EST: That looks like a good answer John Downey, I tried it but it appears that it ends up being not a true method. Your example defines the new patch function with an argument of It looks like Python isn't really treating it as a method, but more just as a variable which happens to be a function (and as such is callable). Is there any way to attach an actual method to a class? Oh, and Ryan, that isn't exactly what I was looking for (it isn't a builtin functionality), but it is quite cool nonetheless. |
8 | 576 | 2982 | NaN | In Python, there is a difference between functions and bound methods.
Bound methods have been "bound" (how descriptive) to an instance, and that instance will be passed as the first argument whenever the method is called. Callables that are attributes of a class (as opposed to an instance) are still unbound, though, so you can modify the class definition whenever you want:
Previously defined instances are updated as well (as long as they haven't overridden the attribute themselves):
The problem comes when you want to attach a method to a single instance:
The function is not automatically bound when it's attached directly to an instance:
To bind it, we can use the MethodType function in the types module:
This time other instances of the class have not been affected:
More information can be found by reading about descriptors and metaclass programming. |
2 | -6 | 984 | NaN | I don't know Python syntax, but I know Ruby can do it, and it is rather trivial. Let's say you want to add a method to Array that prints the length to standard out:
If you don't want to modify the whole class, you can just add the method to a single instance of the array, and no other arrays will have the method:
Just be aware of the issues involved in using this feature. Jeff Atwood actually wrote about it not too long ago. |
0 | 14 | 982 | NaN | In Python monkey patching generally works by overwriting a class or functions signature with your own. Below is an example from the Zope Wiki:
That code will overwrite/create a method called speak on the class. In Jeff Atwood's recent post on monkey patching. He shows an example in C# 3.0 which is the current language I use for work. |
0 | 4 | 4600 | NaN | What you're looking for is
|
0 | 256 | 773 | How do I use Python's itertools.groupby()? | I haven't been able to find an understandable explanation of how to actually use Python's
I've reviewed the documentation, and the examples, but I've had trouble trying to apply them beyond a simple list of numbers. So, how do I use of |
7 | 394 | 7286 | NaN | As Sebastjan said, you first have to sort your data. This is important. The part I didn't get is that in the example construction
Here's an example of that, using clearer variable names:
This will give you the output:
In this example, The Here, In the above Here's a slightly different example with the same data, using a list comprehension:
This will give you the output:
|
3 | 52 | 783 | NaN | Can you show us your code? The example on the Python docs is quite straightforward:
So in your case, data is a list of nodes, keyfunc is where the logic of your criteria function goes and then You must be careful to sort the data by the criteria before you call |
0 | 31 | 1983 | Python: what is the difference between (1,2,3) and [1,2,3], and when should I use each? | In many places, When should I use one or the other, and why? |
4 | 26 | 2277 | NaN | From the Python FAQ:
Generally by convention you wouldn't choose a list or a tuple just based on its (im)mutability. You would choose a tuple for small collections of completely different pieces of data in which a full-blown class would be too heavyweight, and a list for collections of any reasonable size where you have a homogeneous set of data. |
4 | 7 | 12557 | NaN | The notion of tuples are highly expressive:
|
1 | 10 | 4595 | NaN | Tuples are a quick\flexible way to create composite data-types. Lists are containers for, well, lists of objects. For example, you would use a List to store a list of student details in a class. Each student detail in that list may be a 3-tuple containing their roll number, name and test score.
Also, because tuples are immutable they can be used as keys in dictionaries. |
0 | 19 | 1987 | NaN | The list [1,2,3] is dynamic and flexible but that flexibility comes at a speed cost. The tuple (1,2,3) is fixed (immutable) and therefore faster. |
0 | 2 | 12454 | NaN | Whenever I need to pass in a collection of items to a function, if I want the function to not change the values passed in - I use tuples. Else if I want to have the function to alter the values, I use list. Always if you are using external libraries and need to pass in a list of values to a function and are unsure about the integrity of the data, use a tuple. |
0 | 1 | 5719 | NaN | As others have mentioned, Lists and tuples are both containers which can be used to store python objects. Lists are extensible and their contents can change by assignment, on the other hand tuples are immutable. Also, lists cannot be used as keys in a dictionary whereas tuples can. |
0 | 1 | 5746 | NaN | If you can find a solution that works with tuples, use them, as it forces immutability which kind of drives you down a more functional path. You almost never regret going down the functional/immutable path. |
7 | 18 | 11060 | How should I unit test a code-generator? | This is a difficult and open-ended question I know, but I thought I'd throw it to the floor and see if anyone had any interesting suggestions. I have developed a code-generator that takes our python interface to our C++ code (generated via SWIG) and generates code needed to expose this as WebServices. When I developed this code I did it using TDD, but I've found my tests to be brittle as hell. Because each test essentially wanted to verify that for a given bit of input code (which happens to be a C++ header) I'd get a given bit of outputted code I wrote a small engine that reads test definitions from XML input files and generates test cases from these expectations. The problem is I dread going in to modify the code at all. That and the fact that the unit tests themselves are a: complex, and b: brittle. So I'm trying to think of alternative approaches to this problem, and it strikes me I'm perhaps tackling it the wrong way. Maybe I need to focus more on the outcome, IE: does the code I generate actually run and do what I want it to, rather than, does the code look the way I want it to. Has anyone got any experiences of something similar to this they would care to share? |
3 | 8 | 11074 | NaN | I started writing up a summary of my experience with my own code generator, then went back and re-read your question and found you had already touched upon the same issues yourself, focus on the execution results instead of the code layout/look. Problem is, this is hard to test, the generated code might not be suited to actually run in the environment of the unit test system, and how do you encode the expected results? I've found that you need to break down the code generator into smaller pieces and unit test those. Unit testing a full code generator is more like integration testing than unit testing if you ask me. |
0 | 4 | 11443 | NaN | Recall that "unit testing" is only one kind of testing. You should be able to unit test the internal pieces of your code generator. What you're really looking at here is system level testing (a.k.a. regression testing). It's not just semantics... there are different mindsets, approaches, expectations, etc. It's certainly more work, but you probably need to bite the bullet and set up an end-to-end regression test suite: fixed C++ files -> SWIG interfaces -> python modules -> known output. You really want to check the known input (fixed C++ code) against expected output (what comes out of the final Python program). Checking the code generator results directly would be like diffing object files... |
0 | 0 | 11128 | NaN | Yes, results are the ONLY thing that matters. The real chore is writing a framework that allows your generated code to run independently... spend your time there. |
0 | 0 | 11235 | NaN | If you are running on *nux you might consider dumping the unittest framework in favor of a bash script or makefile. on windows you might consider building a shell app/function that runs the generator and then uses the code (as another process) and unittest that. A third option would be to generate the code and then build an app from it that includes nothing but a unittest. Again you would need a shell script or whatnot to run this for each input. As to how to encode the expected behavior, it occurs to me that it could be done in much the same way as you would for the C++ code just using the generated interface rather than the C++ one. |
4 | 28 | 12592 | Can you check that an exception is thrown with doctest in Python? | Is it possible to write a doctest unit test that will check that an exception is raised? |
3 | 45 | 12609 | NaN | Yes. You can do it. The doctest module documentation and Wikipedia has an example of it.
|
3 | 21 | 469 | How can I find the full path to a font from its display name on a Mac? | I am using the Photoshop's javascript API to find the fonts in a given PSD. Given a font name returned by the API, I want to find the actual physical font file that that font name corresponds to on the disc. This is all happening in a python program running on OSX so I guess I'm looking for one of:
|
4 | 4 | 497 | NaN | open up a terminal (Applications->Utilities->Terminal) and type this in:
This will spit out every file that has the name you want. Warning: there may be alot to wade through. |
3 | 12 | 3040 | NaN | Unfortunately the only API that isn't deprecated is located in the ApplicationServices framework, which doesn't have a bridge support file, and thus isn't available in the bridge. If you're wanting to use ctypes, you can use ATSFontGetFileReference after looking up the ATSFontRef. Cocoa doesn't have any native support, at least as of 10.5, for getting the location of a font. |
0 | 2 | 518 | NaN | I haven't been able to find anything that does this directly. I think you'll have to iterate through the various font folders on the system: |
6 | 761 | 3061 | Calling a function of a module from a string with the function's name in Python | What is the best way to go about calling a function given a string with the function's name in a Python program. For example, let's say that I have a module I need to get the return value of the function, which is why I don't just use |
3 | 145 | 4605 | NaN | Patrick's solution is probably the cleanest. If you need to dynamically pick up the module as well, you can import it like:
|
1 | 925 | 3071 | NaN | Assuming module
As far as that goes, lines 2 and 3 can be compressed to:
if that makes more sense for your use case. You can use |