Re: [Zope-dev] exceptions on windows

2001-09-16 Thread Dieter Maurer
Chris Withers writes: > > However, I checked that in Python2.1 (at least) there is not > > "exceptions" module. > > How strange, I've been doing a _lot_ of: > > from exceptions import Exception It's built in. I looked in the file system Dieter ___

Re: [Zope-dev] exceptions on windows

2001-09-16 Thread Chris Withers
> However, I checked that in Python2.1 (at least) there is not > "exceptions" module. How strange, I've been doing a _lot_ of: from exceptions import Exception over the last week in Python 2.1.1 and it works fine for me :-S Confusedly, Chris ___ Z

Re: [Zope-dev] exceptions on windows

2001-09-15 Thread Dieter Maurer
Andy McKay writes: > Wild guess... theres a module /lib/python/Interface/Exceptions.py. In Python > 1.5.2 doesnt that mean windows will import that rather than exceptions.py? Only when you happen to be inside the "Interface" package... Anywhere else, it should find "exceptions". However, I chec

Re: [Zope-dev] exceptions on windows

2001-09-14 Thread Andy McKay
CTED]> Sent: Friday, September 14, 2001 4:57 AM Subject: [Zope-dev] exceptions on windows > i've always been curious why zope on windows with > a bundled python seems to have problems with finding > the standard lib exceptions. does anyone know why? > > for example > &

[Zope-dev] exceptions on windows

2001-09-14 Thread kapil thangavelu
i've always been curious why zope on windows with a bundled python seems to have problems with finding the standard lib exceptions. does anyone know why? for example from exceptions import SyntaxError class MySyntaxErr(SyntaxError): pass in a product generates an import error. (i last n

Re: [Zope-dev] Exceptions

2000-11-12 Thread Jim Fulton
I think that this would make a great dev.zope.org fish-bowl project. I'd love to see someone come up with an exception model for Zope: - arranging exceptions in a hierarchy. - defining standard APIs for exceptions. To give an example of what I'd like to gain by having exception AP

Re: [Zope-dev] Exceptions

2000-11-10 Thread Jeffrey P Shell
On 11/10/2000 9:45 AM, "seb bacon" <[EMAIL PROTECTED]> wrote: > I was just building in some error handling into some UI code, and wanted to > catch errors relating to duplicate ids. The problem is that just about every > client-side error raises the same kind of Exception, a 'Bad Request'. A qu

RE: [Zope-dev] Exceptions

2000-11-10 Thread Brian Lloyd
> > > Oh if only!!! > > I love this idea, and comments haev coem from DC along those same lines, > btu nothing ever really happened about it... If there are people willing to work on this, then a proposal would be most welcome... http://dev.zope.org/Wikis/DevSite/Proposals/FrontPage Brian

Re: [Zope-dev] Exceptions

2000-11-10 Thread Chris Withers
Oh if only!!! I love this idea, and comments haev coem from DC along those same lines, btu nothing ever really happened about it... cheers, Chris seb bacon wrote: > > I was just building in some error handling into some UI code, and wanted to catch >errors relating to duplicate ids. The pro

[Zope-dev] Exceptions

2000-11-10 Thread seb bacon
I was just building in some error handling into some UI code, and wanted to catch errors relating to duplicate ids. The problem is that just about every client-side error raises the same kind of Exception, a 'Bad Request'. A quick grep counted 41 different types of 'Bad Request' in my Zope so