Serhiy Storchaka 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3325a6780c 
								
							 
						 
						
							
							
								
								bpo-27169: The __debug__ constant is now optimized out at compile time. ( #4880 )  
							
							... 
							
							
							
							This fixes also bpo-22091. 
							
						 
						
							2017-12-15 12:35:48 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								91106cd9ff 
								
							 
						 
						
							
							
								
								bpo-29240: PEP 540: Add a new UTF-8 Mode ( #855 )  
							
							... 
							
							
							
							* Add -X utf8 command line option, PYTHONUTF8 environment variable
  and a new sys.flags.utf8_mode flag.
* If the LC_CTYPE locale is "C" at startup: enable automatically the
  UTF-8 mode.
* Add _winapi.GetACP(). encodings._alias_mbcs() now calls
  _winapi.GetACP() to get the ANSI code page
* locale.getpreferredencoding() now returns 'UTF-8' in the UTF-8
  mode. As a side effect, open() now uses the UTF-8 encoding by
  default in this mode.
* Py_DecodeLocale() and Py_EncodeLocale() now use the UTF-8 encoding
  in the UTF-8 Mode.
* Update subprocess._args_from_interpreter_flags() to handle -X utf8
* Skip some tests relying on the current locale if the UTF-8 mode is
  enabled.
* Add test_utf8mode.py.
* _Py_DecodeUTF8_surrogateescape() gets a new optional parameter to
  return also the length (number of wide characters).
* pymain_get_global_config() and pymain_set_global_config() now
  always copy flag values, rather than only copying if the new value
  is greater than the old value. 
							
						 
						
							2017-12-13 12:29:09 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Barry Warsaw 
								
							 
						 
						
							
							
							
							
								
							
							
								36c1d1f1e5 
								
							 
						 
						
							
							
								
								PEP 553 built-in breakpoint() function (bpo-31353) ( #3355 )  
							
							... 
							
							
							
							Implement PEP 553, built-in breakpoint() with support from sys.breakpointhook(), along with documentation and tests.  Closes bpo-31353 
							
						 
						
							2017-10-05 12:11:18 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									diana 
								
							 
						 
						
							
							
							
							
								
							
							
								543386b7f0 
								
							 
						 
						
							
							
								
								bpo-31657: Add test coverage for the __debug__ case (GH-3450)  
							
							... 
							
							
							
							Update the compile tests for optimization levels to also check that
__debug__ blocks are included or excluded based on the optimization
level.
Patch by Diana Clarke. 
							
						 
						
							2017-10-03 09:46:56 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								3ca9f50f96 
								
							 
						 
						
							
							
								
								bpo-31160: test_builtin: don't check waitpid() status ( #3050 )  
							
							
							
						 
						
							2017-08-09 23:08:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								4baca1b0f7 
								
							 
						 
						
							
							
								
								bpo-31160: Fix test_builtin for zombie process ( #3043 )  
							
							... 
							
							
							
							PtyTests.run_child() now calls os.waitpid() to read the exit status
of the child process to avoid creating zombie process and leaking
processes in the background. 
							
						 
						
							2017-08-09 17:44:19 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								f7eae0adfc 
								
							 
						 
						
							
							
								
								[security] bpo-13617: Reject embedded null characters in wchar* strings. ( #2302 )  
							
							... 
							
							
							
							Based on patch by Victor Stinner.
Add private C API function _PyUnicode_AsUnicode() which is similar to
PyUnicode_AsUnicode(), but checks for null characters. 
							
						 
						
							2017-06-28 08:30:06 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								baf9f29811 
								
							 
						 
						
							
							
								
								bpo-29839: Raise ValueError rather than OverflowError in len() for negative values. ( #701 )  
							
							
							
						 
						
							2017-04-16 09:37:18 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								d6debb24e0 
								
							 
						 
						
							
							
								
								bpo-29919: Remove unused imports found by pyflakes ( #137 )  
							
							... 
							
							
							
							Make also minor PEP8 coding style fixes on modified imports. 
							
						 
						
							2017-03-27 16:05:26 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								398ef5c08f 
								
							 
						 
						
							
							
								
								Issue  #29327 : Fixed a crash when pass the iterable keyword argument to sorted().  
							
							
							
						 
						
							2017-01-20 08:33:06 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								7984bff52a 
								
							 
						 
						
							
							
								
								Issue  #28385 : An error message when non-empty format spec is passed to  
							
							... 
							
							
							
							object.__format__ now contains the name of actual type. 
							
						 
						
							2016-10-30 19:37:46 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								d1af5effc2 
								
							 
						 
						
							
							
								
								Issue  #28385 : An error message when non-empty format spec is passed to  
							
							... 
							
							
							
							object.__format__ now contains the name of actual type. 
							
						 
						
							2016-10-30 19:33:54 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Snow 
								
							 
						 
						
							
							
							
							
								
							
							
								4f29e75289 
								
							 
						 
						
							
							
								
								Issue  #24254 : Drop cls.__definition_order__.  
							
							
							
						 
						
							2016-09-08 15:11:11 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Raymond Hettinger 
								
							 
						 
						
							
							
							
							
								
							
							
								f0f1c239e4 
								
							 
						 
						
							
							
								
								Issue 27936: Fix inconsistent round() behavior between float and int  
							
							
							
						 
						
							2016-09-03 01:55:11 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								44b548dda8 
								
							 
						 
						
							
							
								
								#27364 : fix "incorrect" uses of escape character in the stdlib.  
							
							... 
							
							
							
							And most of the tools.
Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and
Martin Panter. 
							
						 
						
							2016-09-08 13:59:53 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Snow 
								
							 
						 
						
							
							
							
							
								
							
							
								92a6c170e6 
								
							 
						 
						
							
							
								
								Issue  #24254 : Preserve class attribute definition order.  
							
							
							
						 
						
							2016-09-05 14:50:11 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Raymond Hettinger 
								
							 
						 
						
							
							
							
							
								
							
							
								3b09cd64e0 
								
							 
						 
						
							
							
								
								Merge  
							
							
							
						 
						
							2016-09-03 01:55:39 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Nick Coghlan 
								
							 
						 
						
							
							
							
							
								
							
							
								d78448e912 
								
							 
						 
						
							
							
								
								Issue  #27366 : Implement PEP 487  
							
							... 
							
							
							
							- __init_subclass__ called when new subclasses defined
- __set_name__ called when descriptors are part of a
  class definition 
							
						 
						
							2016-07-30 16:26:03 +10:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								763f9f0d89 
								
							 
						 
						
							
							
								
								Issue  #25983 : Added tests for multi-argument type().  
							
							
							
						 
						
							2016-02-08 20:28:03 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								3cae757772 
								
							 
						 
						
							
							
								
								Issue  #24402 : Merge potential test fix from 3.4 into 3.5  
							
							
							
						 
						
							2015-10-10 05:28:17 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								e44dba3b4f 
								
							 
						 
						
							
							
								
								Issue  #24402 : Factor out PtyTests.run_child() in input() tests  
							
							... 
							
							
							
							This reuses existing code to hopefully make the new test_input_no_stdout_
fileno() test work. It is hanging Free BSD 9 and OS X Tiger buildbots, and I
don't know why. 
							
						 
						
							2015-10-10 05:27:15 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								e02f8fc44d 
								
							 
						 
						
							
							
								
								Issue  #24402 : Merge input() fix from 3.4 into 3.5  
							
							
							
						 
						
							2015-10-10 01:55:23 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								c9a6ab56cf 
								
							 
						 
						
							
							
								
								Issue  #24402 : Fix input() when stdout.fileno() fails; diagnosed by Eryksun  
							
							... 
							
							
							
							Also factored out some test cases into a new PtyTests class. 
							
						 
						
							2015-10-10 01:25:38 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Berker Peksag 
								
							 
						 
						
							
							
							
							
								
							
							
								ce643913a9 
								
							 
						 
						
							
							
								
								Issue  #9517 : Move script_helper to the support package.  
							
							... 
							
							
							
							Patch by Christie Wilson. 
							
						 
						
							2015-05-06 06:33:17 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								65ee4674e2 
								
							 
						 
						
							
							
								
								Issue  #22777 : Test pickling with all protocols.  
							
							
							
						 
						
							2014-12-15 14:06:02 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									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