[Python-checkins] CVS: python/dist/src/Lib/test test_weakref.py,1.13,1.14

Fred L. Drake fdrake@users.sourceforge.net
Thu, 18 Oct 2001 12:28:31 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv20603/Lib/test

Modified Files:
	test_weakref.py 
Log Message:
Add a test for calling a weakref proxy with a dictionary of keyword args.

Index: test_weakref.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_weakref.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** test_weakref.py	2001/10/18 18:06:05	1.13
--- test_weakref.py	2001/10/18 19:28:29	1.14
***************
*** 161,164 ****
--- 161,167 ----
          self.assert_(o.bar == 'twinkies!',
                       "call through proxy not passed through to original")
+         ref1(x='Splat.')
+         self.assert_(o.bar == 'Splat.',
+                      "call through proxy not passed through to original")
  
          # expect due to too few args