Re: [Tutor] Questions Regarding ASPECT ORIENTED PROGRAMMING (AOP)

2015-02-25 Thread Alan Gauld
On 25/02/15 13:00, Mishal Chowdhury wrote: First, I'm not sure that either of these questions have to do with Aspect Oriented Programming per se. Note however that Python does not offer any specific support for AOP. (You can't explicitly define an 'Aspect' like you can a class for example) 1

[Tutor] Questions Regarding ASPECT ORIENTED PROGRAMMING (AOP)

2015-02-25 Thread Mishal Chowdhury
1. Is it Possible to call a function which is defined in a child class from a parent class through a web service? 2. Can I Create an Aspect Class and create a child class of the Aspect class and allow another class to access the child aspect class methods? Could I please get an example code t