diff options
author | Greg Ward <gward@python.net> | 2000-02-18 00:25:39 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-18 00:25:39 (GMT) |
commit | bbeceeaf9a5edf878154b17a6a94403a26822d51 (patch) | |
tree | 6089ebf12dbeb9ceeddecf33a7a7e231b5a6837a /Lib/distutils/command/build_clib.py | |
parent | 592f28272e1287e8cdb57fb1887c4782fa07281e (diff) | |
download | cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.zip cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.tar.gz cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.tar.bz2 |
Renamed all 'options' class attributes to 'user_options'.
Diffstat (limited to 'Lib/distutils/command/build_clib.py')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 749b0c2..26b89b3 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -28,9 +28,10 @@ from distutils.ccompiler import new_compiler class build_lib (Command): - options = [('debug', 'g', - "compile with debugging information"), - ] + user_options = [ + ('debug', 'g', + "compile with debugging information"), + ] def set_default_options (self): # List of libraries to build |