Make function's docstring be comments to fix waf help message

Mitch Watrous 2011-04-17 19:45:48 -07:00
parent 3a3673d951
commit a64837e4b4
1 changed files with 4 additions and 8 deletions

View File

@ -76,15 +76,11 @@ def get_bool_from_file(file_path, bool_name, value_if_missing):
return value_if_missing
# Reads the NS-3 configuration file and returns a list of enabled modules.
#
# This function first looks for the ns3 configuration file (.ns3rc) in
# the current working directory and then looks in the ~ directory.
def read_config_file():
'''Reads the NS-3 configuration file and returns a list of enabled modules.
This function first looks for the ns3 configuration file (.ns3rc)
in the current working directory and then looks in the ~
directory.
'''
# By default, all modules will be enabled, examples will be disabled,
# and tests will be disabled.
modules_enabled = ['all_modules']