Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

9
votes
4answers
2k views

Python: how to call a property of the base class if this property is being overwritten in the derived class?

I'm changing some classes of mine from an extensive use of getters and setters to a more pythonic use of properties. But now I'm stuck because some of my previous getters or setters would call the ...
7
votes
1answer
217 views

How is __slots__ implemented in Python?

How is __slots__ implemented in Python? Is this exposed in the C interface? How do I get __slots__ behaviour when defining a Python class in C via PyTypeObject?
7
votes
4answers
4k views

Portable way to pass file descriptor between different processes

On most UNIX systems passing an open file between processes can be easily done for child/parent processes by fork(); however I need to share a fd "after" the child was already forked. I've found some ...
6
votes
2answers
261 views

Using a class instance as a class attribute, descriptors, and properties

I have recently stated trying to use the newer style of classes in Python (those derived from object). As an excersise to familiarise myself with them I am trying to define a class which has a number ...
6
votes
4answers
344 views

Static and instance methods in Python

Can I define a Python method to be both static and instance at the same time? Something like: class C(object): @staticmethod def a(self, arg1): if self: blah blah ...
6
votes
2answers
67 views

When and why might I assign an instance of a descriptor class to a class attribute in Python rather than use a property?

I'm aware that a property is a descriptor, but are there specific examples of when using a descriptor class might be more advantageous, pythonic, or provide some benefit over using @property on a ...
5
votes
3answers
148 views

Programmatically generate methods for a class

I have about 20 methods to redirect to a wrapper method that takes the original method, and the rest of the arguments: class my_socket(parent): def _in(self, method, *args, **kwargs): # ...
4
votes
2answers
68 views

Putting a function to a local namespace to speeding up access taking descriptors into account

I use numpy.random.normal function in a tough loop in a class. class MyClass(MyBaseClass): def run(self): while True: ... ...
4
votes
1answer
90 views

Maven descriptor (META-INF/maven) duplicate entry in archive

I'm facing a problem with maven build. I have several ejb projects. After maven build the jar-file contains the maven descriptor in META-INF/maven twice, i.e. if I extract files to disk 7zip asks to ...
4
votes
2answers
71 views

What is the difference between “descriptor” and “signature”?

I am now using ASM (Java bytecode instrumentation library). To retrieve the signature of given method, there is a field which is named "desc". I guess this is an abbreviation of "descriptor", but why ...
4
votes
4answers
242 views

Can a method be used as either a staticmethod or instance method?

I'd like to be able to do this: class A(object): @staticandinstancemethod def B(self=None, x, y): print self is None and "static" or "instance" A.B(1,2) A().B(1,2) This seems like ...
4
votes
2answers
123 views

bash: how to redirect stdin/stderr then later revert fd's?

I want a script to redirect stdin and stderr to a file, do a bunch of stuff, then undo those redirections and take action on the file contents. I'm trying: function redirect(){ exec 3>&1 ...
4
votes
2answers
235 views

Using Python descriptors with slots

I want to be able use python descriptors in a class which has the slots optimization: class C(object): __slots__ = ['a'] a = MyDescriptor('a') def __init__(self, val): self.a ...
4
votes
2answers
621 views

Multiple file descriptors to the same file, C

I have a multithreaded application that is opening and reading the same file (not writing). I am opening a different file descriptor for each thread (but they all point to the same file). Each thread ...
4
votes
1answer
203 views

add a decorate function to a class

I have a decorated function (simplified version): class Memoize: def __init__(self, function): self.function = function self.memoized = {} def __call__(self, *args, **kwds): ...
4
votes
2answers
4k views

Maven assembly - Error reading assemblies

I have defined a personalized jar-with-dependencies assembly descriptor. However, when I execute it with mvn assembly:assembly, I get : ... [INFO] META-INF/ already added, skipping [INFO] ...
4
votes
4answers
2k views

python, __slots__ and “attribute is read-only”

I want to create an object in python that have a few attributes and I want to protect myself from accidentally using wrong attribute name. The code is following: class MyClass( object ) : m = ...
3
votes
1answer
79 views

python3: bind method to class instance with .__get__(), it works but why?

I know if you want to add a method to a class instance you can't do a simple assignment like this: >>> def print_var(self): # method to be added print(self.var) >>> class ...
3
votes
1answer
308 views

Python 2.6: How to access base class descriptor field hidden by derived class?

I have a descriptor storing data in host object's dictionary. And I have fields of this descriptor in class hierarchy with the same name: class ADescriptor(object): def __init__(self, ...
3
votes
1answer
182 views

Difference between using __init__ and setting a class variable

I'm trying to learn descriptors, and I'm confused by objects behaviour - in the two examples below, as I understood __init__ they should work the same. Can someone unconfuse me, or point me to a ...
3
votes
2answers
208 views

Why does declaring a descriptor class in the __init__ function break the descriptor functionality?

In class B below I wanted the __set__ function in class A to be called whenever you assign a value to B().a . Instead, setting a value to B().a overwrites B().a with the value. Class C assigning to ...
2
votes
1answer
75 views

python class data descriptor list

I can't seem to figure out how to get a list of a classes data descriptors. Basically, I want to run some validation against the fields and unset fields. For instance: class Field (object): def ...
2
votes
0answers
95 views

SURF interest point parameters

I want to give alternative interest points as input to SURF using the -p1 command (I'm using the authors implementation: http://www.vision.ee.ethz.ch/~surf/download.html). But I'm not sure what to ...
2
votes
2answers
90 views

How to tell python non-class objects from class objects

I am new to python. I think non-class objects do not have bases attribute whereas class objects do have it. But I am not sure. How does python\cpython checks if an object is non-class or class and ...
2
votes
3answers
361 views

python resettable memoization decorator

I'm attempting to build a decorator for an instance method of a class that will memoize the result. (This has been done a million times before) However, I'd like the option of being able to reset the ...
2
votes
1answer
430 views

BGL: How do I store edge_descriptors and vertex_descriptors efficiently?

So after my circular dependency problem with the BGL was solved I've come to another obstacle. I'm currently using an adjacency-list to model my graph. Bundled properties for both nodes and edges are ...
2
votes
1answer
389 views

How to create decorator for lazy initialization of a property

I want to create a decorator that works like a property, only it calls the decorated function only once, and on subsequent calls always return the result of the first call. An example: def ...
2
votes
1answer
194 views

file descriptors and open files

I have two quick questions: When do two file descriptors point to the same open file ? When do two open files point to the same inode ? Also, if you happen to have some good documentation with ...
2
votes
2answers
245 views

python descriptors sharing values across classes

A python descriptor that I'm working with is sharing its value across all instances of its owner class. How can I make each instance's descriptor contain its own internal values? class Desc(object): ...
2
votes
1answer
76 views

What does .NET add to Windows/Linux processes and threads?

As far as I know, .NET uses Windows processes. What extra state information & functionality does it add to information contained in Windows thread/process descriptors? And what is different in ...
2
votes
1answer
757 views

Maven assembly plugin: run only one descriptor

I have a project which has several custom descriptors written for the assembly plugin. Is there a way to run only one of those descriptors at a time instead of the whole bunch? I tried using the ...
2
votes
6answers
319 views

Parsing variable length descriptors from a byte stream and acting on their type

I'm reading from a byte stream that contains a series of variable length descriptors which I'm representing as various structs/classes in my code. Each descriptor has a fixed length header in common ...
2
votes
3answers
634 views

Symbian C++: TBuf Question

I have a TBuf variable in my code that looks as follows: TBuf<100> test; test.Copy( _L("02somestringofrandomlength")); What I would like to do now, is to ignore the number (which takes the ...
2
votes
1answer
774 views

TBuf to TInt Symbian

I simply wanna convert a TBuf to TInt in Symbian. I tried to do it the following way: TBuf<2> buf; buf.Copy( _L("10")); TInt valInt; TLex8 lex(buf); lex.Val(valInt); Here I get then the ...
2
votes
5answers
2k views

Python: how to call a data member of the base class if it is being overwritten as a property in the derived class?

This question is similar to this other one, with the difference that the data member in the base class is not wrapped by the descriptor protocol. In other words, how can I access a member of the base ...
2
votes
3answers
376 views

Why do managed attributes just work for class attributes and not for instance attributes in python?

To illustrate the question check the following code: class MyDescriptor(object): def __get__(self, obj, type=None): print "get", self, obj, type return self._v def __set__(self, obj, ...
1
vote
1answer
129 views

Meanings of dollar sign in Java method descriptor?

For example, its part of the Jikes RVM stack. at [0x70cfba90, 0x708cfaa4] Lorg/apache/lucene/index/SegmentInfos; **access$000**(Ljava/lang/String;)V at [0x70cfbb04, 0x708b55c8] ...
1
vote
2answers
105 views

Descriptor for lazy loading

I wanted to implement lazy loading of variables, but I seem to misunderstand descriptors a bit. I'd like to have object variables, which on first access will call the obj.load() function which will ...
1
vote
1answer
45 views

why is my maven plugin descriptor not being generated automatically?

I have wrote my own plugin project and have run the command mvn -install through cygwin for my plugin project. the jar file for it is bring created in my repository, however when i execute my plugin, ...
1
vote
4answers
67 views

PHP: how do we make a joint, numeric-associative array; how do I look up the index by itself?

Here's the generic workaround I am using: http://codepad.viper-7.com/2tiPvN $j=0; $paper = array('copier' => "Copier and Multipurpose", 'inkjet' => "Injet Printer", ...
1
vote
1answer
89 views

How to get size for subimage from SURF descriptor

I want to copy the part of an image which is descibed by a SURF descriptor. I know that the 9x9 filter in surf has a scale of 1.2. So if I have for example a descriptor with a scale of 1.2 is the part ...
1
vote
3answers
178 views

How to call methods on Python class descriptor objects?

I created a class String() with __get__(), __set__(), and a method to_db(); however, when I do name = String(), I can't do self.name.to_db() because it's calling to_db() on the value returned by ...
1
vote
1answer
96 views

Python: why can't descriptors be instance variables?

Say I define this descriptor: class MyDescriptor(object): def __get__(self, instance, owner): return self._value def __set__(self, instance, value): self._value = value ...
1
vote
2answers
78 views

Reading input from a particular file descriptor

If I know that input to my program will come from a file descriptor with a (non standard) ID, how do I read from it? For example, if I need to read from a file descriptor with the ID of 3, how do I ...
1
vote
2answers
232 views

two file descriptors to same file

Using the posix read() write() linux calls, is it guaranteed that if I write through one file descriptor and read through another file descriptor, in a serial fashion such that the two actions are ...
1
vote
1answer
401 views

jpa call readonly composite table but getting “Exception Description: Missing descriptor for [CollectorInfo]”

In a Spring 3 app a controller is calling a JpaCollectorManager with calls a JpaCollectorInfoDao to get a list which is defined by a nativequery. The query calls 2 seperate tables which uses sql and ...
1
vote
2answers
223 views

Get method wrapped in a descriptor with getattr

I have the following descriptor, which saves the configuration inside my class after a method which is annotated with @saveconfig is called: class saveconfig(object): def __init__(self, f): ...
1
vote
2answers
223 views

python protobufs - avoid the install step?

i'm writing a small python utility which will be consumed by moderately non-technical users and which needs to interface w/ some protobufs. ideally, i would like the only prerequisites to using this ...
1
vote
3answers
168 views

Can I call shutdown twice on a file descriptor in C language?

I am using c . I have fd1 as a file descriptor, can I call like this twice? main () { .... shutdown(fd1, SHUT_WR); .... shutdown(fd1, SHUT_WR); .... } I personally think it works because fd1 has ...
1
vote
2answers
237 views

Abort linux polling

I am porting an audio mixer from directsound on Windows to alsa on Linux. I am polling on, let's say, 16 file descriptors using the system call "poll". Now i need to be able to abort the polling ...

1 2