repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
The 0.5 release happened on 2/15, not on 2/14. :-)
[python/dscho.git]
/
Lib
/
distutils
/
command
/
__init__.py
blob
8659307cbfd569c02c0a934e5066bcea8ec16476
1
"""distutils.command
2
3
Package containing implementation of all the standard Distutils
4
commands. Currently this means:
5
6
build
7
build_py
8
build_ext
9
install
10
install_py
11
install_ext
12
dist
13
14
but this list will undoubtedly grow with time."""
15
16
__rcsid__
=
"$Id$"
17
18
__all__
= [
'build'
,
19
'build_py'
,
20
'build_ext'
,
21
'install'
,
22
'install_py'
,
23
'install_ext'
,
24
'dist'
,
25
]