Stefan Krah 
								
							 
						 
						
							
							
							
							
								
							
							
								0f6ce8d9df 
								
							 
						 
						
							
							
								
								Issue  #3367 : NULL-terminate argv[] copies to prevent an invalid access  
							
							... 
							
							
							
							in sys_update_path(). 
							
						 
						
							2012-03-26 15:05:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								94ba691ed3 
								
							 
						 
						
							
							
								
								main() now displays an error message before exiting if a command line argument  
							
							... 
							
							
							
							cannot be decoded 
							
						 
						
							2011-12-16 23:48:31 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								f933e1ab6f 
								
							 
						 
						
							
							
								
								Issue  #4388 : On Mac OS X, decode command line arguments from UTF-8, instead of  
							
							... 
							
							
							
							the locale encoding. If the LANG (and LC_ALL and LC_CTYPE) environment variable
is not set, the locale encoding is ISO-8859-1, whereas most programs (including
Python) expect UTF-8. Python already uses UTF-8 for the filesystem encoding and
to encode command line arguments on this OS. 
							
						 
						
							2010-10-20 22:58:25 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								168e117e0a 
								
							 
						 
						
							
							
								
								Add an optional size argument to _Py_char2wchar()  
							
							... 
							
							
							
							_Py_char2wchar() callers usually need the result size in characters. Since it's
trivial to compute it in _Py_char2wchar() (O(1) whereas wcslen() is O(n)), add
an option to get it. 
							
						 
						
							2010-10-16 23:16:16 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								052a04d34a 
								
							 
						 
						
							
							
								
								Revert r85435 (and r85440): decode command line arguments from utf-8  
							
							... 
							
							
							
							Python exits with a fatal error if the command line contains an undecodable
argument. PyUnicode_FromString() fails at the first undecodable byte because it
calls the error handler, but error handlers are not ready before Python
initialization. 
							
						 
						
							2010-10-13 23:24:06 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								a21350976e 
								
							 
						 
						
							
							
								
								main(): catch PyUnicode_FromString() failure (exit)  
							
							
							
						 
						
							2010-10-13 22:36:16 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								90bbaa57f9 
								
							 
						 
						
							
							
								
								Issue  #9992 : On Mac OS X, decode command line arguments from utf-8 instead of  
							
							... 
							
							
							
							the locale encoding. 
							
						 
						
							2010-10-13 22:15:06 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								f95a1b3c53 
								
							 
						 
						
							
							
								
								Recorded merge of revisions 81029 via svnmerge from  
							
							... 
							
							
							
							svn+ssh://pythondev@svn.python.org/python/trunk
........
  r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines
  Untabify C files. Will watch buildbots.
........ 
							
						 
						
							2010-05-09 15:52:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ronald Oussoren 
								
							 
						 
						
							
							
							
							
								
							
							
								d61deca27c 
								
							 
						 
						
							
							
								
								Move _Py_char2wchar from python.c to main.c.  
							
							... 
							
							
							
							This fixes issue #8441 : python.c is not included
in the framework while main.c is and without this
patch you get a link error when building
Python.framework on OSX. 
							
						 
						
							2010-04-18 14:46:12 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Collin Winter 
								
							 
						 
						
							
							
							
							
								
							
							
								dfa66c1dda 
								
							 
						 
						
							
							
								
								Fix the --with-cxx-main build.  
							
							
							
						 
						
							2010-04-17 00:20:57 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Philip Jenvey 
								
							 
						 
						
							
							
							
							
								
							
							
								e53de3dc4a 
								
							 
						 
						
							
							
								
								#7301 : decode $PYTHONWARNINGS in the same way as argv, test non-ascii values  
							
							
							
						 
						
							2010-04-14 03:01:39 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								8ed91b2768 
								
							 
						 
						
							
							
								
								Issue  #6097 : Escape UTF-8 surrogates resulting from mbstocs conversion  
							
							... 
							
							
							
							of the command line. 
							
						 
						
							2009-05-29 16:22:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								43c57785d3 
								
							 
						 
						
							
							
								
								Rename utf8b error handler to surrogateescape.  
							
							
							
						 
						
							2009-05-10 08:15:24 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								011e842033 
								
							 
						 
						
							
							
								
								Issue  #5915 : Implement PEP 383, Non-decodable Bytes in  
							
							... 
							
							
							
							System Character Interfaces. 
							
						 
						
							2009-05-05 04:43:17 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								26338d1cfd 
								
							 
						 
						
							
							
								
								another instance of  #804543 : use strdup() when saving the result of setlocale() because it could be overwritten by subsequent setlocale()s.  
							
							
							
						 
						
							2009-02-27 17:52:38 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								08a8f5fff9 
								
							 
						 
						
							
							
								
								restore compilation on OpenBSD  #4146  
							
							
							
						 
						
							2008-10-19 14:15:00 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Amaury Forgeot d'Arc 
								
							 
						 
						
							
							
							
							
								
							
							
								d0ca955d9f 
								
							 
						 
						
							
							
								
								#4004 : Missing newline in some startup error messages.  
							
							... 
							
							
							
							Patch by Victor. 
							
						 
						
							2008-10-07 21:06:18 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Antoine Pitrou 
								
							 
						 
						
							
							
							
							
								
							
							
								fff953048f 
								
							 
						 
						
							
							
								
								Issue  #3696 : Error parsing arguments on OpenBSD <= 4.4 and Cygwin.  
							
							... 
							
							
							
							Patch by Amaury Forgeot d'Arc, reviewed by me. 
							
						 
						
							2008-09-03 18:58:51 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								790465fd90 
								
							 
						 
						
							
							
								
								Change command line processing API to use wchar_t.  
							
							... 
							
							
							
							Fixes  #2128 . 
						
							2008-04-05 20:41:37 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								4643bd9a9c 
								
							 
						 
						
							
							
								
								Apparently FreeBSD enables some HW floating-point exceptions by default.  
							
							... 
							
							
							
							This can cause core dumps when Python runs.  Python relies on the 754-
(and C99-) mandated default "non-stop" mode for FP exceptions.  This
patch from Ben Laurie disables at least one FP exception on FreeBSD at
Python startup time. 
							
						 
						
							2002-12-28 21:56:08 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Mark Hammond 
								
							 
						 
						
							
							
							
							
								
							
							
								fe51c6d66e 
								
							 
						 
						
							
							
								
								Excise DL_EXPORT/DL_IMPORT from Modules/*.  Required adding a prototype  
							
							... 
							
							
							
							for Py_Main().
Thanks to Kalle Svensson and Skip Montanaro for the patches. 
							
						 
						
							2002-08-02 02:27:13 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Thomas Wouters 
								
							 
						 
						
							
							
							
							
								
							
							
								bd4bc4e9e9 
								
							 
						 
						
							
							
								
								Even more ANSIfication: fix as many function pointers and declarations as  
							
							... 
							
							
							
							possible. 
							
						 
						
							2000-07-22 23:57:55 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Fredrik Lundh 
								
							 
						 
						
							
							
							
							
								
							
							
								faa209d6bd 
								
							 
						 
						
							
							
								
								- ANSI-fication  
							
							... 
							
							
							
							(patch #100805  by Peter Schneider-Kamp) 
							
						 
						
							2000-07-09 20:35:15 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								9c1201fe39 
								
							 
						 
						
							
							
								
								Py_Main() must be DL_EXPORT too.  
							
							
							
						 
						
							1998-12-07 14:28:47 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								be10c20adf 
								
							 
						 
						
							
							
								
								Now include Python.h  
							
							
							
						 
						
							1998-08-08 20:01:22 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								7c14103d77 
								
							 
						 
						
							
							
								
								Keep gcc -Wall happy  
							
							
							
						 
						
							1997-08-15 02:52:08 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								4c04be64b3 
								
							 
						 
						
							
							
								
								This is now the "real" main program -- it calls Py_Main(argc, argv)  
							
							... 
							
							
							
							which is in the library and does all the work. 
							
						 
						
							1997-07-19 19:25:33 +00:00