Boost logo

Boost-Commit :

From: ghost_at_[hidden]
Date: 2008-05-18 00:26:03


Author: vladimir_prus
Date: 2008-05-18 00:26:02 EDT (Sun, 18 May 2008)
New Revision: 45467
URL: http://svn.boost.org/trac/boost/changeset/45467

Log:
Tweak naming.

Text files modified:
   branches/build/python_port/python/boost/build/build/feature.py | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/build/python_port/python/boost/build/build/feature.py
==============================================================================
--- branches/build/python_port/python/boost/build/build/feature.py (original)
+++ branches/build/python_port/python/boost/build/build/feature.py 2008-05-18 00:26:02 EDT (Sun, 18 May 2008)
@@ -108,7 +108,7 @@
     else:
         __all_top_features.append(name)
 
- extend_feature (name, values)
+ extend (name, values)
 
     # FIXME: why his is needed.
     if 'free' in attributes:
@@ -327,7 +327,7 @@
 # extend_feature
 # extend_subfeature
 
-def extend_feature (name, values):
+def extend (name, values):
     """ Adds the given values to the given feature.
     """
     name = add_grist (name)
@@ -397,7 +397,7 @@
     subfeature_name = __get_subfeature_name (subfeature, value_string)
     
     f = ungrist (feature)
- extend_feature (f + '-' + subfeature_name, subvalues) ;
+ extend (f + '-' + subfeature_name, subvalues) ;
     
     __add_to_subfeature_value_to_name_map (feature, value_string, subfeature_name, subvalues)
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk