mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 18:28:49 +00:00 
			
		
		
		
	 9aebc61ad8
			
		
	
	
		9aebc61ad8
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r67030 | benjamin.peterson | 2008-10-26 15:21:13 -0500 (Sun, 26 Oct 2008) | 1 line fix __future__ imports when multiple features are given ........ r67031 | benjamin.peterson | 2008-10-26 15:33:19 -0500 (Sun, 26 Oct 2008) | 1 line add forgotten test for r67030 ........
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			530 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			530 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Check that multiple features can be enabled.
 | |
| from __future__ import unicode_literals, print_function
 | |
| 
 | |
| import sys
 | |
| import unittest
 | |
| from . import support
 | |
| 
 | |
| 
 | |
| class TestMultipleFeatures(unittest.TestCase):
 | |
| 
 | |
|     def test_unicode_literals(self):
 | |
|         self.assertTrue(isinstance("", str))
 | |
| 
 | |
|     def test_print_function(self):
 | |
|         with support.captured_output("stderr") as s:
 | |
|             print("foo", file=sys.stderr)
 | |
|         self.assertEqual(s.getvalue(), "foo\n")
 | |
| 
 | |
| 
 | |
| def test_main():
 | |
|     support.run_unittest(TestMultipleFeatures)
 |