Revision: 356
Author: allenb
Date: 2006-07-27 12:05:17 -0700 (Thu, 27 Jul 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=356&view=rev
Log Message:
-----------
Fix grammar.
Modified Paths:
--------------
pyplusplus_dev/pyplusplus/decl_wrappers/decl_wrapper.py
Modified: pyplusplus_dev/pyplusplus/decl_wrappers/decl_wrapper.py
===================================================================
--- pyplusplus_dev/pyplusplus/decl_wrappers/decl_wrapper.py 2006-07-27 19:04:38 UTC (rev 355)
+++ pyplusplus_dev/pyplusplus/decl_wrappers/decl_wrapper.py 2006-07-27 19:05:17 UTC (rev 356)
@@ -99,9 +99,9 @@
def get_exportable( self ):
if self._exportable is None:
if self.name.startswith( '__' ):
- self._exportable_reason = 'pyplusplus, by default, does not exposes internal compilers declarations. Names of those declarations starts with "__".'
+ self._exportable_reason = 'pyplusplus, by default, does not expose internal compilers declarations. Names of those declarations usually start with "__".'
elif self.location and self.location.file_name == "<internal>":
- self._exportable_reason = 'pyplusplus, by default, does not exposes declarations, that belongs to "<internal>" header.'
+ self._exportable_reason = 'pyplusplus, by default, does not expose internal declarations (those that gccxml say belong to "<internal>" header).'
else:
self._exportable_reason = self._exportable_impl( )
self._exportable = not bool( self._exportable_reason )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|