Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-09-14 Thread lkcl
On Sep 6, 5:49 pm, Terry Reedy wrote: > lkclwrote: > > On Aug 21, 12:58 am, a...@pythoncraft.com (Aahz) wrote: > >> In article > >> <77715735-2668-43e7-95da-c91d175b3...@z31g2000yqd.googlegroups.com>, > > >>lkcl wrote: > > >>> if somebody would like to add this to the python bugtracker, as a > >

Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-09-12 Thread Aahz
In article , Terry Reedy wrote: >lkcl wrote: >> On Aug 21, 12:58 am, a...@pythoncraft.com (Aahz) wrote: >>> In article >>> <77715735-2668-43e7-95da-c91d175b3...@z31g2000yqd.googlegroups.com>, >>> lkcl wrote: if somebody would like to add this to the python bugtracker, as a contr

Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-09-06 Thread Terry Reedy
lkcl wrote: On Aug 21, 12:58 am, a...@pythoncraft.com (Aahz) wrote: In article <77715735-2668-43e7-95da-c91d175b3...@z31g2000yqd.googlegroups.com>, lkcl wrote: if somebody would like to add this to the python bugtracker, as a contribution, that would be great. alternatively, you might like

Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-09-06 Thread lkcl
On Aug 21, 12:58 am, a...@pythoncraft.com (Aahz) wrote: > In article > <77715735-2668-43e7-95da-c91d175b3...@z31g2000yqd.googlegroups.com>, > > lkcl wrote: > > >if somebody would like to add this to the python bugtracker, as a > >contribution, that would be great. alternatively, you might like

Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-08-20 Thread Aahz
In article <77715735-2668-43e7-95da-c91d175b3...@z31g2000yqd.googlegroups.com>, lkcl wrote: > >if somebody would like to add this to the python bugtracker, as a >contribution, that would be great. alternatively, you might like to >have a word with the python developers to get them to remove the

Re: platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-08-17 Thread lkcl
thought that people might like to know: i found also that imputil, the standard python module, was lacking the necessary complexity in being a substitute for the standard __import__ function. the additions required were very simple: # note the addition of level=-1 which is ignored def _i

platform-specific overrides of functions and class methods (expanding on imputils demo code)

2009-08-16 Thread lkcl
i've just had to put something together for pyjamas-desktop which may prove to be useful to other people, so i'm pointing people in its general direction, for archive purposes. the purpose behind the platform override system is to allow implementations of a common API, in python, to share the majo