summaryrefslogtreecommitdiff
path: root/EasyInstall.txt
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-08 05:09:23 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-08 05:09:23 +0000
commit6050f5361738831a12debd373b9016a077e930df (patch)
tree25e82b1ab87651a118c178191776e19575dd4bab /EasyInstall.txt
parent592269afeaa4f96bddbaa8b6fbe8dddcea2445a4 (diff)
downloadpython-setuptools-git-6050f5361738831a12debd373b9016a077e930df.tar.gz
Added support for defining command aliases in distutils configuration
files, under the "[aliases]" section. To prevent recursion and to allow aliases to call the command of the same name, a given alias can be expanded only once per command-line invocation. You can define new aliases with the "alias" command, either for the local, global, or per-user configuration. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041094
Diffstat (limited to 'EasyInstall.txt')
-rwxr-xr-xEasyInstall.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index dccdf957..db128f8b 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -495,7 +495,13 @@ Known Issues
name or version). Also, this means that if you use the various ``--tag``
options of "egg_info", any distributions generated will use the tags in the
version, not just egg distributions.
-
+
+ * Added support for defining command aliases in distutils configuration files,
+ under the "[aliases]" section. To prevent recursion and to allow aliases to
+ call the command of the same name, a given alias can be expanded only once
+ per command-line invocation. You can define new aliases with the "alias"
+ command, either for the local, global, or per-user configuration.
+
* Added "rotate" command to delete old distribution files, given a set of
patterns to match and the number of files to keep. (Keeps the most
recently-modified distribution files matching each pattern.)