Skip to content
Snippets Groups Projects
Commit 40e57ac3 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix doctests, PEP8

parent 2217c59e
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ Next, let's create an expression using *x*:
>>> u = (x+1)**5
>>> u
Power(Sum(Variable('x'), 1), 5)
Power(Sum((Variable('x'), 1)), 5)
>>> print u
(x + 1)**5
......@@ -103,9 +103,9 @@ You can also easily define your own objects to use inside an expression:
... mapper_method = "map_fancy_operator"
...
>>> u
Power(Sum(Variable('x'), 1), 5)
Power(Sum((Variable('x'), 1)), 5)
>>> 17*FancyOperator(u)
Product(17, FancyOperator(Power(Sum(Variable('x'), 1), 5)))
Product((17, FancyOperator(Power(Sum((Variable('x'), 1)), 5))))
As a final example, we can now derive from *MyMapper* to multiply all
*FancyOperator* instances by 2.
......@@ -117,10 +117,10 @@ As a final example, we can now derive from *MyMapper* to multiply all
... return 2*FancyOperator(self.rec(expr.operand))
...
>>> MyMapper2()(FancyOperator(u))
Product(2, FancyOperator(Power(Product(Variable('x'), 1), 5)))
Product((2, FancyOperator(Power(Product((Variable('x'), 1)), 5))))
"""
from pymbolic.version import VERSION_TEXT as __version__
from pymbolic.version import VERSION_TEXT as __version__ # noqa
import pymbolic.parser
import pymbolic.compiler
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment