[Python-checkins] CVS: python/nondist/peps pep-0200.txt,1.5,1.6

Jeremy Hylton python-dev@python.org
Wed, 26 Jul 2000 20:03:42 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv881

Modified Files:
	pep-0200.txt 
Log Message:
add sterner warning about test case problems
note error in dictionary comparison that raises exception


Index: pep-0200.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0200.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pep-0200.txt	2000/07/26 04:12:42	1.5
--- pep-0200.txt	2000/07/27 03:03:39	1.6
***************
*** 75,78 ****
--- 75,98 ----
      released this way.
  
+ Failing test cases need to get fixed
+ 
+     We need to resolve errors in the regression test suite quickly.
+     Changes should not be committed to the CVS tree unless the
+     regression test runs cleanly with the changes applied.  If it
+     fails, there may be bugs lurking in the code.  (There may be bugs
+     anyway, but that's another matter.)  If the test cases are known
+     to fail, they serve no useful purpose.
+ 
+     The current test suite runs correctly on my Linux box (July 26).
+     Heard reports that test_fork1 fails on some Linux boxes and that
+     test_winreg and test_winreg32 fail on Windows.
+ 
+ Open items -- should be done/fixed
+ 
+     Decoding errors when comparing strings.  There is a dictionary bug
+     that prevents objects from being accessible when an exception is
+     raised during hashing or comparison.
+ 
+ 
  Accepted and completed