[Zope3-checkins] CVS: Zope3/src/zope/proxy/tests - test_proxy.py:1.13

Fred L. Drake, Jr. fred@zope.com
Fri, 6 Jun 2003 20:15:04 -0400


Update of /cvs-repository/Zope3/src/zope/proxy/tests
In directory cvs.zope.org:/tmp/cvs-serv17401

Modified Files:
	test_proxy.py 
Log Message:
Removed comment that no longer applies now that we require Python
2.2.3.


=== Zope3/src/zope/proxy/tests/test_proxy.py 1.12 => 1.13 ===
--- Zope3/src/zope/proxy/tests/test_proxy.py:1.12	Tue Jun  3 18:46:27 2003
+++ Zope3/src/zope/proxy/tests/test_proxy.py	Fri Jun  6 20:15:03 2003
@@ -73,9 +73,6 @@
         self.assertRaises(TypeError, self.proxy_class, key='value')
 
     def test_subclass_constructor(self):
-        # NB This leaks due to a bug in Python 2.2.2.
-        #    The leak is fixed in the release22-maint branch in Python CVS
-        #    (and this in Python 2.2.3), and in Python 2.3.
         class MyProxy(self.proxy_class):
             def __new__(cls, *args, **kwds):
                 return super(MyProxy, cls).__new__(cls, *args, **kwds)