Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								ee8712cda4 
								
							 
						 
						
							
							
								
								#2621  rename test.test_support to test.support  
							
							
							
						 
						
							2008-05-20 21:35:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Collin Winter 
								
							 
						 
						
							
							
							
							
								
							
							
								3add4d78ff 
								
							 
						 
						
							
							
								
								Raise statement normalization in Lib/test/.  
							
							
							
						 
						
							2007-08-29 23:37:32 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Skip Montanaro 
								
							 
						 
						
							
							
							
							
								
							
							
								7a98be2efb 
								
							 
						 
						
							
							
								
								Remove RISCOS support  
							
							
							
						 
						
							2007-08-16 14:35:24 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								967f1e3b85 
								
							 
						 
						
							
							
								
								Remove string.{letters,lowercase,uppercase}.  
							
							
							
						 
						
							2007-08-14 09:23:10 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								e2b70bcf74 
								
							 
						 
						
							
							
								
								Get rid of dict.has_key(). Boy this has a lot of repercussions!  
							
							... 
							
							
							
							Not all code has been fixed yet; this is just a checkpoint...
The C API still has PyDict_HasKey() and _HasKeyString(); not sure
if I want to change those just yet. 
							
						 
						
							2006-08-18 22:13:04 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								99d001ed0d 
								
							 
						 
						
							
							
								
								Removed reliance on damaged module object appearing in sys.modules  
							
							... 
							
							
							
							after a failed import.
This is the last checkin in the "change import failure semantics" series. 
							
						 
						
							2004-08-02 03:59:57 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								3b0a3293c3 
								
							 
						 
						
							
							
								
								Massive changes from SF 589982 (tempfile.py rewrite, by Zack  
							
							... 
							
							
							
							Weinberg).  This changes all uses of deprecated tempfile functions to
the recommended ones. 
							
						 
						
							2002-08-09 16:38:32 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Barry Warsaw 
								
							 
						 
						
							
							
							
							
								
							
							
								04f357cffe 
								
							 
						 
						
							
							
								
								Get rid of relative imports in all unittests.  Now anything that  
							
							... 
							
							
							
							imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".
This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).
Now Tim and Jack can have at it. :) 
							
						 
						
							2002-07-23 19:04:11 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								e2ae77b8b8 
								
							 
						 
						
							
							
								
								SF patch  #474590  -- RISC OS support  
							
							
							
						 
						
							2001-10-24 20:42:55 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Fred Drake 
								
							 
						 
						
							
							
							
							
								
							
							
								2e2be3760c 
								
							 
						 
						
							
							
								
								Change the PyUnit-based tests to use the test_main() approach.  This  
							
							... 
							
							
							
							allows using the tests with unittest.py as a script.  The tests will
still run when run as a script themselves. 
							
						 
						
							2001-09-20 21:33:42 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								ab9ba27dc0 
								
							 
						 
						
							
							
								
								Whitespace normalization.  
							
							
							
						 
						
							2001-08-09 21:40:30 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								d342c62961 
								
							 
						 
						
							
							
								
								This test failed under python -O.  
							
							... 
							
							
							
							rewrite_file():  Delete both .pyc and .pyo leftovers, and explicitly close
the new source file after writing to it. 
							
						 
						
							2001-08-02 17:23:11 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								394a47b268 
								
							 
						 
						
							
							
								
								Unit test for improved package import semantics.  
							
							... 
							
							
							
							Original by Alex Coventry (in SF patch #441791 ), adapted to the
standard regression test framework. 
							
						 
						
							2001-08-02 14:14:20 +00:00