Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								bad1257c96 
								
							 
						 
						
							
							
								
								Issue  #22777 : Test pickling with all protocols.  
							
							
							
						 
						
							2014-12-15 14:03:42 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								d8a1447c99 
								
							 
						 
						
							
							
								
								Issue  #22215 : Now ValueError is raised instead of TypeError when str or bytes  
							
							... 
							
							
							
							argument contains not permitted null character or byte. 
							
						 
						
							2014-09-06 20:07:17 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								f84200ffc7 
								
							 
						 
						
							
							
								
								test the change of  #21193  correctly  
							
							
							
						 
						
							2014-04-11 15:37:18 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Mark Dickinson 
								
							 
						 
						
							
							
							
							
								
							
							
								0c346d827d 
								
							 
						 
						
							
							
								
								Issue  #21193 : Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeError.  Patch by Josh Rosenberg.  
							
							
							
						 
						
							2014-04-11 14:34:40 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								d44cebb0f5 
								
							 
						 
						
							
							
								
								Issue  #20599 : Don't clear environment in test_cleanup() of test_builtin  
							
							
							
						 
						
							2014-02-13 10:54:32 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								e755fba2d1 
								
							 
						 
						
							
							
								
								Issue  #20599 : Don't clear environment in test_cleanup() of test_builtin  
							
							
							
						 
						
							2014-02-13 10:54:32 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								8ebe5324a0 
								
							 
						 
						
							
							
								
								Issue  #20599 : Force ASCII encoding for stdout in test_cleanup() of test_builtin  
							
							... 
							
							
							
							On Windows, the codec of sys.stdout is implemented in Python. At exit, the
codec may be unloaded before the destructor tries to write something to
sys.stdout. 
							
						 
						
							2014-02-12 18:27:55 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								8da4fb5a1c 
								
							 
						 
						
							
							
								
								Issue  #20599 : Force ASCII encoding for stdout in test_cleanup() of test_builtin  
							
							... 
							
							
							
							On Windows, the codec of sys.stdout is implemented in Python. At exit, the
codec may be unloaded before the destructor tries to write something to
sys.stdout. 
							
						 
						
							2014-02-12 18:27:55 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								f86b433823 
								
							 
						 
						
							
							
								
								Try to fix test_cleanup (issue  #20599 ).  
							
							
							
						 
						
							2014-02-12 12:40:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								76a6326068 
								
							 
						 
						
							
							
								
								Try to fix test_cleanup (issue  #20599 ).  
							
							
							
						 
						
							2014-02-12 12:40:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								013bb91aa3 
								
							 
						 
						
							
							
								
								Issue  #19255 : The builtins module is restored to initial value before  
							
							... 
							
							
							
							cleaning other modules.  The sys and builtins modules are cleaned last. 
							
						 
						
							2014-02-10 18:21:34 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								87a5c515d0 
								
							 
						 
						
							
							
								
								Issue  #19255 : The builtins module is restored to initial value before  
							
							... 
							
							
							
							cleaning other modules.  The sys and builtins modules are cleaned last. 
							
						 
						
							2014-02-10 18:21:34 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zachary Ware 
								
							 
						 
						
							
							
							
							
								
							
							
								a4b7a7548c 
								
							 
						 
						
							
							
								
								Issue  #3158 : doctest can now find doctests in functions and methods  
							
							... 
							
							
							
							written in C.
As a part of this, a few doctests have been added to the builtins module
(on hex(), oct(), and bin()), a doctest has been fixed (hopefully on all
platforms) on float, and test_builtins now runs doctests in builtins. 
							
						 
						
							2013-11-24 01:19:09 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								daf455554b 
								
							 
						 
						
							
							
								
								Issue  #18571 : Implementation of the PEP 446: file descriptors and file handles  
							
							... 
							
							
							
							are now created non-inheritable; add functions os.get/set_inheritable(),
os.get/set_handle_inheritable() and socket.socket.get/set_inheritable(). 
							
						 
						
							2013-08-28 00:53:59 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								82fb71d662 
								
							 
						 
						
							
							
								
								Cleanup test_builtin  
							
							
							
						 
						
							2013-08-22 01:58:12 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Raymond Hettinger 
								
							 
						 
						
							
							
							
							
								
							
							
								4d6018fe45 
								
							 
						 
						
							
							
								
								Issue 18111: Add a default argument to min() and max()  
							
							
							
						 
						
							2013-06-24 22:43:02 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brett Cannon 
								
							 
						 
						
							
							
							
							
								
							
							
								2f9f056db1 
								
							 
						 
						
							
							
								
								Make test_builtin work when executed directly  
							
							
							
						 
						
							2013-06-15 23:24:11 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								ee57f159af 
								
							 
						 
						
							
							
								
								Revert a premature patch for issue  #14010  (changeset 846bd418aee5).  
							
							
							
						 
						
							2013-04-06 22:55:12 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								278d03bd66 
								
							 
						 
						
							
							
								
								Revert a premature patch for issue  #14010  (changeset aaaf36026511).  
							
							
							
						 
						
							2013-04-06 22:52:34 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								aac81e2780 
								
							 
						 
						
							
							
								
								Issue  #14010 : Fix a crash when iterating or deleting deeply nested filters  
							
							... 
							
							
							
							(builting and in itertools module, i.e. map(), itertools.chain(), etc). 
							
						 
						
							2013-04-06 21:20:30 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								e8f706eda7 
								
							 
						 
						
							
							
								
								Issue  #14010 : Fix a crash when iterating or deleting deeply nested filters  
							
							... 
							
							
							
							(builting and in itertools module, i.e. map(), itertools.chain(), etc). 
							
						 
						
							2013-04-06 21:14:43 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ezio Melotti 
								
							 
						 
						
							
							
							
							
								
							
							
								8a268b985f 
								
							 
						 
						
							
							
								
								#17255 : merge with 3.3.  
							
							
							
						 
						
							2013-02-21 23:17:34 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ezio Melotti 
								
							 
						 
						
							
							
							
							
								
							
							
								600b71167e 
								
							 
						 
						
							
							
								
								#17255 : merge with 3.2.  
							
							
							
						 
						
							2013-02-21 23:17:08 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ezio Melotti 
								
							 
						 
						
							
							
							
							
								
							
							
								0f4377c100 
								
							 
						 
						
							
							
								
								#17255 : test short-circuiting behavior of any()/all().  Patch by Wim Glenn.  
							
							
							
						 
						
							2013-02-21 23:15:40 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								09f336ceb0 
								
							 
						 
						
							
							
								
								Merge:  #17142 : fix apparent copy and paste error in test_all.  
							
							
							
						 
						
							2013-02-06 10:05:56 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								cd74322dad 
								
							 
						 
						
							
							
								
								Merge:  #17142 : fix apparent copy and paste error in test_all.  
							
							
							
						 
						
							2013-02-06 09:57:51 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								1acaf0bce2 
								
							 
						 
						
							
							
								
								#17142 : fix apparent copy and paste error in test_all.  
							
							
							
						 
						
							2013-02-06 09:56:19 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								56265564ff 
								
							 
						 
						
							
							
								
								Back out fix for issue  #13886 ; it introduced a new bug in interactive readline use.  
							
							
							
						 
						
							2013-02-02 20:29:39 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								c27bcbf863 
								
							 
						 
						
							
							
								
								Back out fix for issue  #13886 ; it introduced a new bug in interactive readline use.  
							
							
							
						 
						
							2013-02-02 20:25:19 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								6375257188 
								
							 
						 
						
							
							
								
								Back out fix for issue  #13886 ; it introduced a new bug in interactive readline use.  
							
							
							
						 
						
							2013-02-02 20:05:11 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								ef0a44c629 
								
							 
						 
						
							
							
								
								Issue  #13886 : Fix input() to not strip out supposedly-invalid input bytes.  
							
							... 
							
							
							
							Also fix sporadic failures in test_builtin due to dependence on whether the
readline module has previously been imported. 
							
						 
						
							2013-01-27 14:17:21 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								60cc32382f 
								
							 
						 
						
							
							
								
								Issue  #13886 : Fix input() to not strip out supposedly-invalid input bytes.  
							
							... 
							
							
							
							Also fix sporadic failures in test_builtin due to dependence on whether the
readline module has previously been imported. 
							
						 
						
							2013-01-27 14:13:25 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nadeem Vawda 
								
							 
						 
						
							
							
							
							
								
							
							
								6f02ea02c8 
								
							 
						 
						
							
							
								
								Issue  #13886 : Fix input() to not strip out supposedly-invalid input bytes.  
							
							... 
							
							
							
							Also fix sporadic failures in test_builtin due to dependence on whether the
readline module has previously been imported. 
							
						 
						
							2013-01-27 14:01:42 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrew Svetlov 
								
							 
						 
						
							
							
							
							
								
							
							
								2cd8ce4690 
								
							 
						 
						
							
							
								
								Issue  #9856 : Replace deprecation warinigs to raising TypeError in object.__format__  
							
							... 
							
							
							
							Patch by Florent Xicluna. 
							
						 
						
							2012-12-23 14:27:17 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrew Svetlov 
								
							 
						 
						
							
							
							
							
								
							
							
								4b61d0fa7f 
								
							 
						 
						
							
							
								
								Issue  #16045 : add more unit tests for built-in int()  
							
							... 
							
							
							
							Patch by Chris Jerdonek. 
							
						 
						
							2012-12-23 12:50:02 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrew Svetlov 
								
							 
						 
						
							
							
							
							
								
							
							
								8e42e8a0c6 
								
							 
						 
						
							
							
								
								Issue  #16045 : add more unit tests for built-in int()  
							
							... 
							
							
							
							Patch by Chris Jerdonek. 
							
						 
						
							2012-12-23 12:49:33 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								9272279afd 
								
							 
						 
						
							
							
								
								use error label instead of breaking eval loop ( closes   #16693 )  
							
							
							
						 
						
							2012-12-15 12:51:05 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Chris Jerdonek 
								
							 
						 
						
							
							
							
							
								
							
							
								5fae0e5854 
								
							 
						 
						
							
							
								
								Improve str() and object.__str__() documentation (issue  #13538 ).  
							
							
							
						 
						
							2012-11-20 17:45:51 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Chris Jerdonek 
								
							 
						 
						
							
							
							
							
								
							
							
								17fc44c9b3 
								
							 
						 
						
							
							
								
								Improve str() and object.__str__() documentation (issue  #13538 ).  
							
							
							
						 
						
							2012-11-20 17:31:02 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Florent Xicluna 
								
							 
						 
						
							
							
							
							
								
							
							
								3f4ce635ee 
								
							 
						 
						
							
							
								
								Issue  #11022  and  #15287 : correctly remove the TESTFN file in test_builtin.  
							
							
							
						 
						
							2012-07-08 12:08:45 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								f86a5e8a93 
								
							 
						 
						
							
							
								
								Close   #11022 : TextIOWrapper doesn't call locale.setlocale() anymore  
							
							... 
							
							
							
							open() and io.TextIOWrapper are now calling locale.getpreferredencoding(False)
instead of locale.getpreferredencoding() in text mode if the encoding is not
specified. Don't change temporary the locale encoding using locale.setlocale(),
use the current locale encoding instead of the user preferred encoding.
Explain also in open() documentation that locale.getpreferredencoding(False) is
called if the encoding is not specified. 
							
						 
						
							2012-06-05 13:43:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								b0b224233e 
								
							 
						 
						
							
							
								
								Issue  #14385 : Support other types than dict for __builtins__  
							
							... 
							
							
							
							It is now possible to use a custom type for the __builtins__ namespace, instead
of a dict. It can be used for sandboxing for example.  Raise also a NameError
instead of ImportError if __build_class__ name if not found in __builtins__. 
							
						 
						
							2012-04-19 00:57:45 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Kristján Valur Jónsson 
								
							 
						 
						
							
							
							
							
								
							
							
								31668b8f7a 
								
							 
						 
						
							
							
								
								Issue  #14288 : Serialization support for builtin iterators.  
							
							
							
						 
						
							2012-04-03 10:49:41 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								deb925fc14 
								
							 
						 
						
							
							
								
								Skip early if stdin and stdout are not ttys  
							
							
							
						 
						
							2011-11-06 03:04:12 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								1ce4b14c4d 
								
							 
						 
						
							
							
								
								Skip early if stdin and stdout are not ttys  
							
							
							
						 
						
							2011-11-06 03:03:18 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								413d497247 
								
							 
						 
						
							
							
								
								Backport robustness fix for test_builtin  
							
							
							
						 
						
							2011-11-06 02:51:25 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								772add7e1a 
								
							 
						 
						
							
							
								
								Try to make the tty input() tests more robust  
							
							
							
						 
						
							2011-11-06 02:37:42 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								5ee9d8a8a2 
								
							 
						 
						
							
							
								
								Issue  #13342 : input() used to ignore sys.stdin's and sys.stdout's unicode  
							
							... 
							
							
							
							error handler in interactive mode (when calling into PyOS_Readline()). 
							
						 
						
							2011-11-06 00:38:45 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								0d776b1ce8 
								
							 
						 
						
							
							
								
								Issue  #13342 : input() used to ignore sys.stdin's and sys.stdout's unicode  
							
							... 
							
							
							
							error handler in interactive mode (when calling into PyOS_Readline()). 
							
						 
						
							2011-11-06 00:34:26 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ezio Melotti 
								
							 
						 
						
							
							
							
							
								
							
							
								a9860aeb08 
								
							 
						 
						
							
							
								
								#13054 : fix usage of sys.maxunicode after PEP-393.  
							
							
							
						 
						
							2011-10-04 19:06:00 +03:00