Abstract Base Classes are non-instantiable classes used to define the expected behaviour of subclasses.

learn more… | top users | synonyms

0
votes
0answers
36 views

python ABCs do something funny with the namespaces

I a python interpreter I create a custom Abstract Base class: In [ ]: class MyABC(metaclass=abc.ABCMeta): ...: pass And I create a Concrete not-Abstract subclass. Check its mro: In [ ]: ...
2
votes
1answer
28 views

Python multiple inheritance of __new__ and __init__ with a string and second class

I'm trying to create a derived class that inherits from both a str type and a second class. It's problematic since the str type doesn't simply call __init__, but the __new__ method due to its ...
0
votes
2answers
34 views

Access subclass variables from parent file

I am looking for a way to access a subclasses variables from the parent class which is instantiated in a different file. For example basefile.py: class A(object): #gets subclassed var = 0 #place ...
3
votes
1answer
81 views

Idiomatic multiple inheritance with python Abstract Base Classes

In simplest terms what I want is a tuple with one or two additional methods. __new__ or __init__ are not going to be modified. I would like to create an abstract base class that is subclass of ...
2
votes
1answer
59 views

abc.abstractmethod + property

According to the docs it should work to combine @property and @abc.abstractmethod so the following should work in python3.3: import abc class FooBase(metaclass=abc.ABCMeta): @property ...
3
votes
1answer
67 views

Actual difference in implementing/overriding using @abstractproperty and @abstractmethod

Consider an abstract base class with a function which you want each subsequent subclass to override. Using the abc module and ABCMeta; does decorating with @abstractproperty or @abstractmethod ...
4
votes
3answers
220 views

Determine if a Python class is an Abstract Base Class or Concrete

My Python application contains many abstract classes and implementations. For example: import abc import datetime class MessageDisplay(object): __metaclass__ = abc.ABCMeta ...
8
votes
1answer
162 views

Python inheritance, metaclasses and type() function

I can't understand why the following code behaves a particular way, which is described below: from abc import ABCMeta class PackageClass(object): __metaclass__ = ABCMeta class ...
4
votes
3answers
89 views

Implementing pointwise arithmetic with implicit type conversion

Suppose I have class Function, whose instances are callables that take one argument. I defined pointwise arithmetic for these classes in the straightforward way. Here's a simplified version of my code ...
0
votes
2answers
115 views

Is this abstract base class with a “better” __repr__() dangerous?

It bugs me that the default __repr__() for a class is so uninformative: >>> class Opaque(object): pass ... >>> Opaque() <__main__.Opaque object at 0x7f3ac50eba90> ... so ...
0
votes
1answer
61 views

R: ABC error with 1 Ss

Edit: Solved, the error dissapeared whe I updated the package. I'm getting an error when working with just one summary statistic. Is there any reason why this is happening? Is there a way to get ...
-1
votes
3answers
498 views

Cannot access member variable using abc module and properties in python

I wrote a code that simulates the use of abc module and properties. However, it seems that I couldn't be able to access width and height variables. The code is as the following: from abc import ...
3
votes
4answers
142 views

Python idiom for dict-able classes?

I want to do something like this: class Dictable: def dict(self): raise NotImplementedError class Foo(Dictable): def dict(self): return {'bar1': self.bar1, 'bar2': self.bar2} ...
1
vote
0answers
25 views

collections.MutableSequence subclass appears to be singleton? [duplicate]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument Playing around with code found in this answer, I found the following weirdness. Here's my class ...
0
votes
1answer
191 views

Python ABC seems to allow incomplete implementation

I'm trying to create base class and force all subclasses to implement it's interface. I'm using the abc module for this purpose. Here is the base class: class PluginBase: __metaclass = ...
0
votes
1answer
287 views

be suspended in audio player in the android

I have a serious problem. I researched it for two days, but I can't solve it. When I run my app, I get an error. package jl.a.simple; import android.app.Activity; import android.media.MediaPlayer; ...
1
vote
1answer
306 views

Excluding abstractproperties from coverage reports

I have an abstract base class along the lines of: class MyAbstractClass(object): __metaclass__ = ABCMeta @abstractproperty def myproperty(self): pass But when I run nosetests (which ...
1
vote
1answer
384 views

A django model that subclasses an abc, gives a metaclass conflict

I have a following model and abstract base class import abc from django.db import models class AbstractBase(): __metaclass__ = abc.ABCMeta @abc.abstractmethod def my_method(self): ...
1
vote
1answer
643 views

How to put out the alphabet?

is there any way to put out the alphabet in iOS? I want to populate a table with all the letters of an alphabet. And also other alphabets. Any suggestion to do that without any extensions or smth. ...
2
votes
1answer
85 views

Unexpected behavior accessing properties of script variables

I tried to execute the following actionscript3 program and I am surprised of the result of the call to f() function. I was expecting that the result of f() was "1" or at least "undefined" but the "0" ...
1
vote
0answers
149 views

Converting Java Music Applet Songs to MP3 File

So I have created a Java program that takes in an abc music file and plays the file using a MidiSystem.getSequencer(). I was wondering if there was an easy way to convert the played notes into an mp3 ...
1
vote
1answer
124 views

Get “hidden” information in plot() and summary()

I am using the ABC package in R which computes several statistics that can be plotted. Using plot( the results as matrix from another function in the package ) or summary( the results as matrix from ...
0
votes
1answer
326 views

How do I call python subclassed methods from superclass methods?

I have the following kind of superclass / subclass setup: class SuperClass(object): def __init__(self): self.do_something() # requires the do_something method always be called def ...
2
votes
1answer
2k views

python @abstractmethod decorator

I have read python docs about abstract base classes: From here: abc.abstractmethod(function) A decorator indicating abstract methods. Using this decorator requires that the class’s ...
3
votes
2answers
199 views

ABC for String?

I recently discovered abstract base classes (ABCs) in collections and like their clear, systematic approach and Mixins. Now I also want to create customs strings (*), but I couldn't find an ABC for ...
0
votes
2answers
206 views

10 sites through same codebase django MTI, ABCs or EAV

I have a django based web shop that has been evolving over the past year. Currently there's about 8 country specific shops running through the same code base, plus an API, and there's soon to be a B2B ...
7
votes
4answers
575 views

Python : subclass `type` to create specialized types (e.g. a “list of int”)

I am trying to subclass type in order to create a class allowing to build specialized types. e.g. a ListType : >>> ListOfInt = ListType(list, value_type=int) >>> ...
0
votes
2answers
310 views

Python : Using abc in Python < 2.6

Do someone know an implementation of abc for older versions of Python (older than 2.6) ? EDIT : I am for example looking for a snippet that would do the same thing as ABCMeta and abstractmethod, with ...
3
votes
1answer
109 views

AVM Verifier to Flash Log, how to interpret some things?

The AVM verifier when encounters and error, writes to flash log. In the documentation it says that verifier will visit "all possible branches" where jumps might take it. However it is still pretty ...
0
votes
2answers
178 views

Flash ABC : What does the number part of <file>.as$<number> in a swfdump

If I take a swf, and run it through swfdump swfdump.exe -abc file.swf > ABC.txt One the first run I may get some output in ABC.txt like this ObjectConfig.as$60 And on a subsequent run of the ...
2
votes
1answer
384 views

Stack(s), Registers in ActionScript ByteCode AVM2, which all are there?

From the AVM2 Overview PDF I encountered references to two types of stacks - Scope Stack and Operand Stack. 1) I assume these are two different memory stacks, each handling different things. Are ...
4
votes
2answers
664 views

Any tool to debug ActionScript ByteCode? Would like to observe registers, stacks

So when running a SWF, is there a way to step through line by line of ABC code and observe registers, stacks? Could I at least print it to screen or log it?
1
vote
1answer
208 views

In ActionScript Bytecode, what does NewActivation mean?

Some methods use it some don't, obviously that's specified by needsActivation flag, nut what does it do and when to use it and when don't? The information on AVM docs is somewhat ungenerous: Creates ...
1
vote
1answer
527 views

How do I subclass collections.Iterator?

According to the documentation on ABCs, I should just have to add a next method to be able to subclass collections.Iterator. So, I'm using the following class: class ...
20
votes
2answers
3k views

Why use Abstract Base Classes in Python?

Being used to the old ways of duck typing in Python, I failed to understand the need for ABC (abstract base classes). The help is good on how to use them. I tried to read the rationale in the PEP, ...
1
vote
2answers
65 views

Should I use an API/ABC when designing a class used by several in C++?

I am about to add a class X that will be used by my three previously designed classes (A, B and C). The new class X will contain data and functions for new features as well as provide services to ...
0
votes
3answers
975 views

Is there a way to convert a swf to an .abc file?

I'm looking for a way, preferably a command-line utility, to pump out an .abc file for a compiled swf. I've looked into asc.jar, but so far it seems like it can only accept classes, not compiled swfs. ...
0
votes
5answers
2k views

How do I disassemble ABC bytecode?

If I have an abc file, either compiled through the flex SDK, or stripped from a .SWF file, are there any tools that will disassemble that file purely to see what it contains?
0
votes
5answers
567 views

Inherited class “invalid pointer error” when calling virtual functions

As you can see in the code below, I have an Abstract Base Class "HostWindow", and class that derives from it "Chrome". All the functions are implemented in Chrome. The issue is, I can't call functions ...
1
vote
1answer
823 views

localy execute actionscript bytecode

i want to execute a piece of bytecode so that it will run in a specific scope ? for example i want to be able to run this code label.x = 100+label.width and have it react to a label instance that ...
1
vote
2answers
1k views

What tools are available to edit/create AVM2 bytecode?

I'd like to generate some bytecode for the Flash 10 AVM2 directly, i.e. without AS3. An assembler that produced a SWF file would be ideal. Does this exist? If not, what's the easiest way to get from ...
2
votes
4answers
477 views

What is a “nearly-empty” class?

Compile the following class class Interface { virtual void doIt() = 0; virtual ~Interface() = 0; }; inline Interface::~Interface() {} using gcc -fdump-class-hierarchy. gcc emits Class ...
1
vote
1answer
945 views

ONGL in struts 2.1.6

I am using struts 2.1.6 with ONGL. Please see the code below and tell me where should I define properties to <td> tag like width, height, bgcolor etc. in line no 3 and 4. 1) s:form ...
1
vote
6answers
925 views

What do *you* use C++ ABC constructors for?

What do people here use C++ Abstract Base Class constructors for in the field? I am talking about pure interface classes having no data members and no non-pure virtual members. Can anyone ...
2
votes
1answer
333 views

Anyone used the ABC Metric for measuring an application's size?

There are some nice things about it (like it encapsulates the concept of Cyclomatic complexity), and I was wondering if anyone has used it in "real life". If so, what are your experiences? Is it a ...