[Python-checkins] python/dist/src/Lib/distutils dist.py,1.75,1.76
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Mon Mar 21 21:57:03 CET 2005
- Previous message: [Python-checkins] python/dist/src/Doc/dist dist.tex,1.90,1.91
- Next message: [Python-checkins] python/dist/src/Lib/distutils/command upload.py,
NONE, 1.1 bdist_dumb.py, 1.25, 1.26 bdist_rpm.py, 1.46,
1.47 bdist_wininst.py, 1.56, 1.57 sdist.py, 1.59, 1.60
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6855/Lib/distutils
Modified Files:
dist.py
Log Message:
Add the upload command. Make all dist commands register their
outputs with the distribution object.
Index: dist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/dist.py,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- dist.py 21 Mar 2005 06:36:32 -0000 1.75
+++ dist.py 21 Mar 2005 20:56:30 -0000 1.76
@@ -177,6 +177,11 @@
# command_options = { command_name : { option : (source, value) } }
self.command_options = {}
+ # 'dist_files' is the list of (command, file) that have been created
+ # by any dist commands run so far. This is filled regardless
+ # of whether the run is dry or not.
+ self.dist_files = []
+
# These options are really the business of various commands, rather
# than of the Distribution itself. We provide aliases for them in
# Distribution as a convenience to the developer.
- Previous message: [Python-checkins] python/dist/src/Doc/dist dist.tex,1.90,1.91
- Next message: [Python-checkins] python/dist/src/Lib/distutils/command upload.py,
NONE, 1.1 bdist_dumb.py, 1.25, 1.26 bdist_rpm.py, 1.46,
1.47 bdist_wininst.py, 1.56, 1.57 sdist.py, 1.59, 1.60
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list