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


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )



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

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )



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 checked that in Python2.1 (at least) there is not
exceptions module.
SyntaxError (and friends) are defined in __builtins__
and can be accessed directly.


Dieter

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )



[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 noted this behavior on 2.2, haven't used windows since...)


thanks

-kapil

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )



Re: [Zope-dev] exceptions on windows

2001-09-14 Thread Andy McKay

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?

Cheers.
--
  Andy McKay.


- Original Message -
From: kapil thangavelu [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
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

 from exceptions import SyntaxError

 class MySyntaxErr(SyntaxError):
 pass

 in a product generates an import error.

 (i last noted this behavior on 2.2, haven't used windows since...)


 thanks

 -kapil

 ___
 Zope-Dev maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope-dev
 **  No cross posts or HTML encoding!  **
 (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope )



___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )