[pygccxml-commit] SF.net SVN: pygccxml:[1410] pyplusplus_dev
Brought to you by:
mbaas,
roman_yakovenko
|
From: <rom...@us...> - 2008-09-03 12:01:08
|
Revision: 1410
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1410&view=rev
Author: roman_yakovenko
Date: 2008-09-03 12:01:18 +0000 (Wed, 03 Sep 2008)
Log Message:
-----------
fix spelling mistakes found by Bernd Fritzke
Modified Paths:
--------------
pyplusplus_dev/docs/documentation/how_to/file_name_too_long.rest
pyplusplus_dev/docs/peps/dsl_challenge.rest
pyplusplus_dev/pyplusplus/decl_wrappers/algorithm.py
pyplusplus_dev/pyplusplus/module_builder/builder.py
Modified: pyplusplus_dev/docs/documentation/how_to/file_name_too_long.rest
===================================================================
--- pyplusplus_dev/docs/documentation/how_to/file_name_too_long.rest 2008-08-26 19:01:31 UTC (rev 1409)
+++ pyplusplus_dev/docs/documentation/how_to/file_name_too_long.rest 2008-09-03 12:01:18 UTC (rev 1410)
@@ -20,7 +20,7 @@
As you know, a class name in `Python`_ has few `constraints`_ and `Py++`_ is aware
of them. "holder< int >" is illegal class name, so `Py++`_ will generate another
-one - "holder_less_int_grate\_". Pretty ugly and even long, but at least it is
+one - "holder_less_int_greater\_". Pretty ugly and even long, but at least it is
legal one.
.. _`constraints` : http://www.python.org/doc/current/ref/identifiers.html
Modified: pyplusplus_dev/docs/peps/dsl_challenge.rest
===================================================================
--- pyplusplus_dev/docs/peps/dsl_challenge.rest 2008-08-26 19:01:31 UTC (rev 1409)
+++ pyplusplus_dev/docs/peps/dsl_challenge.rest 2008-09-03 12:01:18 UTC (rev 1410)
@@ -117,7 +117,7 @@
PointTmpl = mb.module.template('Point')
Point = PointTmpl( 'int' )
- This is a trivial example, which is why it looks grate. Consider the following class:
+ This is a trivial example, which is why it looks great. Consider the following class:
.. code-block:: C++
Modified: pyplusplus_dev/pyplusplus/decl_wrappers/algorithm.py
===================================================================
--- pyplusplus_dev/pyplusplus/decl_wrappers/algorithm.py 2008-08-26 19:01:31 UTC (rev 1409)
+++ pyplusplus_dev/pyplusplus/decl_wrappers/algorithm.py 2008-09-03 12:01:18 UTC (rev 1410)
@@ -62,7 +62,7 @@
return name
replace_table = {
'<' : '_less_'
- , '>' : '_grate_'
+ , '>' : '_greater_'
, '::' : '_scope_'
, ',' : '_comma_'
, ' ' : '_'
Modified: pyplusplus_dev/pyplusplus/module_builder/builder.py
===================================================================
--- pyplusplus_dev/pyplusplus/module_builder/builder.py 2008-08-26 19:01:31 UTC (rev 1409)
+++ pyplusplus_dev/pyplusplus/module_builder/builder.py 2008-09-03 12:01:18 UTC (rev 1410)
@@ -522,7 +522,6 @@
"""Please see L{decl_wrappers.scopedef_t} class documentation"""
return self.global_ns.operator( name=name
, symbol=symbol
- , function=function
, decl_type=decl_type
, return_type=return_type
, arg_types=arg_types
@@ -534,7 +533,6 @@
"""Please see L{decl_wrappers.scopedef_t} class documentation"""
return self.global_ns.operators( name=name
, symbol=symbol
- , function=function
, decl_type=decl_type
, return_type=return_type
, arg_types=arg_types
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|