Update of /cvsroot/pycrust/PyCrust/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv18870/tests
Modified Files:
test_introspect.py
Log Message:
Fixed introspection bug.
Index: test_introspect.py
===================================================================
RCS file: /cvsroot/pycrust/PyCrust/tests/test_introspect.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** test_introspect.py 21 Mar 2003 05:19:45 -0000 1.23
--- test_introspect.py 21 Mar 2003 05:57:20 -0000 1.24
***************
*** 135,138 ****
--- 135,141 ----
('x = spam.eggs.', '.', 'spam.eggs'),
('x = spam.eggs(', '(', 'spam.eggs'),
+
+ ('for n in range(3):\n d.', '.', 'd'),
+ ('for n in range(3):\n... d.', '.', 'd'),
)
for input, terminator, output in values:
|