| 
									
										
										
										
											1999-09-21 18:33:09 +00:00
										 |  |  | """distutils.command
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Package containing implementation of all the standard Distutils | 
					
						
							| 
									
										
										
										
											2000-03-18 17:36:09 +00:00
										 |  |  | commands."""
 | 
					
						
							| 
									
										
										
										
											1999-09-21 18:33:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-02 01:49:45 +00:00
										 |  |  | __revision__ = "$Id$" | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | __all__ = ['build', | 
					
						
							|  |  |  |            'build_py', | 
					
						
							| 
									
										
										
										
											1999-09-21 18:33:09 +00:00
										 |  |  |            'build_ext', | 
					
						
							| 
									
										
										
										
											2000-03-29 02:18:39 +00:00
										 |  |  |            'build_clib', | 
					
						
							| 
									
										
										
										
											2000-05-25 01:19:18 +00:00
										 |  |  |            'build_scripts', | 
					
						
							| 
									
										
										
										
											2000-05-28 23:49:03 +00:00
										 |  |  |            'clean', | 
					
						
							| 
									
										
										
										
											1999-09-21 18:33:09 +00:00
										 |  |  |            'install', | 
					
						
							| 
									
										
										
										
											2000-03-29 02:18:39 +00:00
										 |  |  |            'install_lib', | 
					
						
							| 
									
										
										
										
											2000-05-27 01:25:16 +00:00
										 |  |  |            'install_headers', | 
					
						
							| 
									
										
										
										
											2000-05-12 00:52:23 +00:00
										 |  |  |            'install_scripts', | 
					
						
							|  |  |  |            'install_data', | 
					
						
							| 
									
										
										
										
											2000-02-18 00:11:52 +00:00
										 |  |  |            'sdist', | 
					
						
							| 
									
										
										
										
											2003-03-03 18:37:16 +00:00
										 |  |  |            'register', | 
					
						
							| 
									
										
										
										
											2000-03-31 03:14:51 +00:00
										 |  |  |            'bdist', | 
					
						
							|  |  |  |            'bdist_dumb', | 
					
						
							| 
									
										
										
										
											2000-05-13 01:48:15 +00:00
										 |  |  |            'bdist_rpm', | 
					
						
							| 
									
										
										
										
											2000-06-27 01:24:07 +00:00
										 |  |  |            'bdist_wininst', | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |            'check', | 
					
						
							| 
									
										
											  
											
												Merged revisions 70912,70944,70968,71033,71041,71208,71263,71286,71395-71396,71405-71406,71485,71492,71494 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r70912 | georg.brandl | 2009-03-31 17:35:46 -0500 (Tue, 31 Mar 2009) | 1 line
  #5617: add a handy function to print a unicode string to gdbinit.
........
  r70944 | georg.brandl | 2009-03-31 23:32:39 -0500 (Tue, 31 Mar 2009) | 1 line
  #5631: add upload to list of possible commands, which is presented in --help-commands.
........
  r70968 | michael.foord | 2009-04-01 13:25:38 -0500 (Wed, 01 Apr 2009) | 1 line
  Adding Wing project file
........
  r71033 | brett.cannon | 2009-04-01 22:34:53 -0500 (Wed, 01 Apr 2009) | 3 lines
  Fix two issues introduced by issue #71031 by changing the signature of
  PyImport_AppendInittab() to take a const char *.
........
  r71041 | jesse.noller | 2009-04-02 00:17:26 -0500 (Thu, 02 Apr 2009) | 1 line
  Add custom initializer argument to multiprocess.Manager*, courtesy of lekma
........
  r71208 | michael.foord | 2009-04-04 20:15:01 -0500 (Sat, 04 Apr 2009) | 4 lines
  Change the way unittest.TestSuite use their tests to always access them through iteration. Non behavior changing, this allows you to create custom subclasses that override __iter__.
  Issue #5693
........
  r71263 | michael.foord | 2009-04-05 14:19:28 -0500 (Sun, 05 Apr 2009) | 4 lines
  Adding assertIs and assertIsNot methods to unittest.TestCase
  Issue #2578
........
  r71286 | tarek.ziade | 2009-04-05 17:04:38 -0500 (Sun, 05 Apr 2009) | 1 line
  added a simplest test to distutils.spawn._nt_quote_args
........
  r71395 | benjamin.peterson | 2009-04-08 08:27:29 -0500 (Wed, 08 Apr 2009) | 1 line
  these must be installed to correctly run tests
........
  r71396 | benjamin.peterson | 2009-04-08 08:29:41 -0500 (Wed, 08 Apr 2009) | 1 line
  fix syntax
........
  r71405 | andrew.kuchling | 2009-04-09 06:22:47 -0500 (Thu, 09 Apr 2009) | 1 line
  Add items
........
  r71406 | andrew.kuchling | 2009-04-09 06:23:36 -0500 (Thu, 09 Apr 2009) | 1 line
  Typo fixes
........
  r71485 | andrew.kuchling | 2009-04-11 11:12:23 -0500 (Sat, 11 Apr 2009) | 1 line
  Add various items
........
  r71492 | georg.brandl | 2009-04-11 13:19:27 -0500 (Sat, 11 Apr 2009) | 1 line
  Take credit for a patch of mine.
........
  r71494 | benjamin.peterson | 2009-04-11 14:31:00 -0500 (Sat, 11 Apr 2009) | 1 line
  ignore py3_test_grammar when compiling the library
........
											
										 
											2009-04-11 20:45:40 +00:00
										 |  |  |            'upload', | 
					
						
							| 
									
										
										
										
											2002-10-04 09:30:06 +00:00
										 |  |  |            # These two are reserved for future use: | 
					
						
							|  |  |  |            #'bdist_sdux', | 
					
						
							|  |  |  |            #'bdist_pkgtool', | 
					
						
							| 
									
										
										
										
											2002-04-17 20:30:10 +00:00
										 |  |  |            # Note: | 
					
						
							|  |  |  |            # bdist_packager is not included because it only provides | 
					
						
							|  |  |  |            # an abstract base class | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |           ] |