summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_ext.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-02-18 00:13:53 (GMT)
committerGreg Ward <gward@python.net>2000-02-18 00:13:53 (GMT)
commit1993f9ad0e2cf53c8dc441cbbb44eb2e3a190538 (patch)
tree08fa9394ecabe2d5505ed392beaf966a2535c369 /Lib/distutils/command/build_ext.py
parente1b1c94a0c38188b932a553115df34dca364a9ff (diff)
downloadcpython-1993f9ad0e2cf53c8dc441cbbb44eb2e3a190538.zip
cpython-1993f9ad0e2cf53c8dc441cbbb44eb2e3a190538.tar.gz
cpython-1993f9ad0e2cf53c8dc441cbbb44eb2e3a190538.tar.bz2
Renamed all command classes so they're exactly the same as the name of the
command itself: no more of this "FooBar class for foo_bar command" silliness.
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r--Lib/distutils/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 42eab47..ea0e294 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -20,7 +20,7 @@ extension_name_re = re.compile \
(r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$')
-class BuildExt (Command):
+class build_ext (Command):
description = "build C/C++ extensions (compile/link to build directory)"