Re: [Tutor] The Template Pattern

2010-12-19 Thread Karim
Thanks a lot to point this out! Karim On 12/19/2010 04:33 AM, Steven D'Aprano wrote: Karim wrote: class InputStrategy( object ): """This InputStrategy class is an abstract interface to various read strategy objects. """ def read(self, filePath): """Abstract method to

Re: [Tutor] The Template Pattern

2010-12-18 Thread Steven D'Aprano
Karim wrote: class InputStrategy( object ): """This InputStrategy class is an abstract interface to various read strategy objects. """ def read(self, filePath): """Abstract method to load into database memory an input file. @arg: filePath - string - The input file

Re: [Tutor] The Template Pattern

2010-12-17 Thread Karim
Hello Steven, Could take some time when possible to answer to my follow-up question? Thank you! Cheers Karim On 12/14/2010 12:19 AM, Karim wrote: On 12/13/2010 11:47 PM, Steven D'Aprano wrote: Karim wrote: Hello all, I am seeking for information about the template pattern applied to pyth

Re: [Tutor] The Template Pattern

2010-12-13 Thread Karim
On 12/13/2010 11:47 PM, Steven D'Aprano wrote: Karim wrote: Hello all, I am seeking for information about the template pattern applied to python. Could you explain some implementation or anything else? it would be helpful. Design patterns are means to an end, not an end in themselves. You

Re: [Tutor] The Template Pattern

2010-12-13 Thread Steven D'Aprano
Karim wrote: Hello all, I am seeking for information about the template pattern applied to python. Could you explain some implementation or anything else? it would be helpful. Design patterns are means to an end, not an end in themselves. You shouldn't say "I want to use the template patter

[Tutor] The Template Pattern

2010-12-13 Thread Karim
Hello all, I am seeking for information about the template pattern applied to python. Could you explain some implementation or anything else? it would be helpful. Regards Thanks a lot Karim ___ Tutor maillist - Tutor@python.org To unsubscribe or cha