mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.
This commit is contained in:
		
							parent
							
								
									f8fc674f0b
								
							
						
					
					
						commit
						dbde88696b
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -1,7 +1,7 @@ | ||||||
| What's New in IDLE 2.7.4? | What's New in IDLE 2.7.4? | ||||||
| ========================= | ========================= | ||||||
| 
 | 
 | ||||||
| - Issue #13532: Check that arguments to sys.stdout.write are strings. | - Issue #13532, #15319: Check that arguments to sys.stdout.write are strings. | ||||||
| 
 | 
 | ||||||
| - Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE. | - Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE. | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -273,7 +273,7 @@ def handle(self): | ||||||
|         """Override base method""" |         """Override base method""" | ||||||
|         executive = Executive(self) |         executive = Executive(self) | ||||||
|         self.register("exec", executive) |         self.register("exec", executive) | ||||||
|         sys.stdin = self.console = _RPCFile(self.get_remote_proxy("stdin")) |         sys.stdin = self.console = self.get_remote_proxy("stdin") | ||||||
|         sys.stdout = _RPCFile(self.get_remote_proxy("stdout")) |         sys.stdout = _RPCFile(self.get_remote_proxy("stdout")) | ||||||
|         sys.stderr = _RPCFile(self.get_remote_proxy("stderr")) |         sys.stderr = _RPCFile(self.get_remote_proxy("stderr")) | ||||||
|         from idlelib import IOBinding |         from idlelib import IOBinding | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Martin v. Löwis
						Martin v. Löwis