does the actual zope version run with python 2.0? thanks, alex
On Thu, 21 Jun 2001, Alexander Tuchacek wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1. Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
thanks, alex At 12:55 21.06.2001, you wrote:
On Thu, 21 Jun 2001, Alexander Tuchacek wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1.
Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Oleg
On Thu, 21 Jun 2001, Alexander Tuchacek wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1.
I've been running Zope with Python 2.1 since it came out. Other than the startup warnings, it has been working flawlessly for me. Am I missing something? _______________________ Ron Bickers Logic Etc, Inc.
On Thu, 21 Jun 2001, Ron Bickers wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1.
I've been running Zope with Python 2.1 since it came out. Other than the startup warnings, it has been working flawlessly for me. Am I missing something?
I had problems zcataloging objects. I got an error "NoBrainer has no attribute __call__". I think it is a problem with ExtensionType. Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
Ah! I had forgotten about this. It is only a problem in lib/python/Products/ZCatalog/dtml/catalogView.dtml. I fixed it with the following patch, which is already in CVS. --- catalogView.dtml.orig Mon Jan 15 16:45:50 2001 +++ catalogView.dtml Fri Apr 27 15:35:27 2001 @@ -46,7 +46,7 @@ </td> <td align="left" valign="top"> <div class="form-text"> - <dtml-with name="aq_self" only> + <dtml-with name="sequence-item" only> <dtml-if name="meta_type"> <dtml-var name="meta_type" size="15"> <dtml-else> _______________________ Ron Bickers Logic Etc, Inc.
-----Original Message----- From: Oleg Broytmann [mailto:phd@phd.fep.ru] Sent: Thursday, June 21, 2001 11:39 AM To: Ron Bickers Cc: Alexander Tuchacek; zope@zope.org Subject: RE: [Zope] zope and python 2.0?
On Thu, 21 Jun 2001, Ron Bickers wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1.
I've been running Zope with Python 2.1 since it came out. Other than the startup warnings, it has been working flawlessly for me. Am I missing something?
I had problems zcataloging objects. I got an error "NoBrainer has no attribute __call__". I think it is a problem with ExtensionType.
Aha! Thank you!!! On Thu, 21 Jun 2001, Ron Bickers wrote:
Ah! I had forgotten about this. It is only a problem in lib/python/Products/ZCatalog/dtml/catalogView.dtml. I fixed it with the following patch, which is already in CVS.
--- catalogView.dtml.orig Mon Jan 15 16:45:50 2001 +++ catalogView.dtml Fri Apr 27 15:35:27 2001 @@ -46,7 +46,7 @@ </td> <td align="left" valign="top"> <div class="form-text"> - <dtml-with name="aq_self" only> + <dtml-with name="sequence-item" only> <dtml-if name="meta_type"> <dtml-var name="meta_type" size="15"> <dtml-else>
does the actual zope version run with python 2.0?
Yes, but not with 2.1.
I've been running Zope with Python 2.1 since it came out. Other than the startup warnings, it has been working flawlessly for me. Am I missing something?
I had problems zcataloging objects. I got an error "NoBrainer has no attribute __call__". I think it is a problem with ExtensionType.
Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
Oleg Broytmann writes:
On Thu, 21 Jun 2001, Alexander Tuchacek wrote:
does the actual zope version run with python 2.0?
Yes, but not with 2.1. I use it with Python 2.1.
I have only 2 problems: 1. I get deprecations warning (which I simply ignore, as "-Wi" does not work) 2. ZClasses are broken: Python's "cPickle.dump" complains about "__module__" being 'None'. Dieter
participants (6)
-
Alexander Tuchacek -
Andreas Jung -
Dieter Maurer -
Oleg Broytmann -
Ron Bickers -
Ron Bickers