1999-09-21 15:33:09 -03:00
|
|
|
"""distutils.command
|
|
|
|
|
|
|
|
Package containing implementation of all the standard Distutils
|
2000-03-18 13:36:09 -04:00
|
|
|
commands."""
|
1999-09-21 15:33:09 -03:00
|
|
|
|
2004-11-10 18:23:15 -04:00
|
|
|
# This module should be kept compatible with Python 2.1.
|
2002-11-19 09:12:28 -04:00
|
|
|
|
2000-03-01 21:49:45 -04:00
|
|
|
__revision__ = "$Id$"
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
__all__ = ['build',
|
|
|
|
'build_py',
|
1999-09-21 15:33:09 -03:00
|
|
|
'build_ext',
|
2000-03-28 22:18:39 -04:00
|
|
|
'build_clib',
|
2000-05-24 22:19:18 -03:00
|
|
|
'build_scripts',
|
2000-05-28 20:49:03 -03:00
|
|
|
'clean',
|
1999-09-21 15:33:09 -03:00
|
|
|
'install',
|
2000-03-28 22:18:39 -04:00
|
|
|
'install_lib',
|
2000-05-26 22:25:16 -03:00
|
|
|
'install_headers',
|
2000-05-11 21:52:23 -03:00
|
|
|
'install_scripts',
|
|
|
|
'install_data',
|
2000-02-17 20:11:52 -04:00
|
|
|
'sdist',
|
2003-03-03 14:37:16 -04:00
|
|
|
'register',
|
2000-03-30 23:14:51 -04:00
|
|
|
'bdist',
|
|
|
|
'bdist_dumb',
|
2000-05-12 22:48:15 -03:00
|
|
|
'bdist_rpm',
|
2000-06-26 22:24:07 -03:00
|
|
|
'bdist_wininst',
|
Merged revisions 70866-70868,70870-70871,70893,70896,70902,70905,70907,70912,70915,70927,70933,70940,70944,70954,70963,70998,71056 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70866 | georg.brandl | 2009-03-31 21:06:57 +0200 (Di, 31 Mär 2009) | 1 line
#4882: document named group behavior a bit better.
........
r70867 | georg.brandl | 2009-03-31 21:10:35 +0200 (Di, 31 Mär 2009) | 1 line
#1096310: document usage of sys.__std*__ a bit better.
........
r70868 | georg.brandl | 2009-03-31 21:12:17 +0200 (Di, 31 Mär 2009) | 1 line
#5190: export make_option in __all__.
........
r70870 | georg.brandl | 2009-03-31 21:26:24 +0200 (Di, 31 Mär 2009) | 1 line
#4411: document mro() and __mro__. (I hope I got it right.)
........
r70871 | georg.brandl | 2009-03-31 21:30:56 +0200 (Di, 31 Mär 2009) | 1 line
#5618: fix typo.
........
r70893 | georg.brandl | 2009-03-31 22:56:32 +0200 (Di, 31 Mär 2009) | 1 line
#1530012: move TQS section before raw strings.
........
r70896 | georg.brandl | 2009-03-31 23:15:33 +0200 (Di, 31 Mär 2009) | 1 line
#5598: document DocFileSuite *args argument.
........
r70902 | georg.brandl | 2009-03-31 23:43:03 +0200 (Di, 31 Mär 2009) | 1 line
#1675026: add a note about a strange Windows problem, and remove notes about AtheOS.
........
r70905 | georg.brandl | 2009-04-01 00:03:40 +0200 (Mi, 01 Apr 2009) | 1 line
#5563: more documentation for bdist_msi.
........
r70907 | georg.brandl | 2009-04-01 00:18:19 +0200 (Mi, 01 Apr 2009) | 1 line
#3427: document correct return type for urlopen().info().
........
r70912 | georg.brandl | 2009-04-01 00:35:46 +0200 (Mi, 01 Apr 2009) | 1 line
#5617: add a handy function to print a unicode string to gdbinit.
........
r70915 | georg.brandl | 2009-04-01 00:40:16 +0200 (Mi, 01 Apr 2009) | 1 line
#5018: remove confusing paragraph.
........
r70927 | georg.brandl | 2009-04-01 01:01:27 +0200 (Mi, 01 Apr 2009) | 1 line
Dont shout to users.
........
r70933 | georg.brandl | 2009-04-01 02:04:33 +0200 (Mi, 01 Apr 2009) | 2 lines
Issue #5635: Fix running test_sys with tracing enabled.
........
r70940 | georg.brandl | 2009-04-01 06:21:14 +0200 (Mi, 01 Apr 2009) | 2 lines
The SimpleXMLRPCServer's CGI handler now runs like a pony.
........
r70944 | georg.brandl | 2009-04-01 06:32:39 +0200 (Mi, 01 Apr 2009) | 1 line
#5631: add upload to list of possible commands, which is presented in --help-commands.
........
r70954 | georg.brandl | 2009-04-01 17:23:43 +0200 (Mi, 01 Apr 2009) | 1 line
Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.
........
r70963 | georg.brandl | 2009-04-01 19:46:01 +0200 (Mi, 01 Apr 2009) | 1 line
#5655: fix docstring oversight.
........
r70998 | georg.brandl | 2009-04-01 23:54:21 +0200 (Mi, 01 Apr 2009) | 1 line
In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext.
........
r71056 | georg.brandl | 2009-04-02 19:43:07 +0200 (Do, 02 Apr 2009) | 2 lines
Actually the displayhook should print the repr.
........
2009-04-05 18:21:05 -03:00
|
|
|
'upload',
|
|
|
|
|
2002-10-04 06:30:06 -03:00
|
|
|
# These two are reserved for future use:
|
|
|
|
#'bdist_sdux',
|
|
|
|
#'bdist_pkgtool',
|
2002-04-17 17:30:10 -03:00
|
|
|
# Note:
|
|
|
|
# bdist_packager is not included because it only provides
|
|
|
|
# an abstract base class
|
1999-03-22 10:55:25 -04:00
|
|
|
]
|