File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -103,8 +103,8 @@ And then use it to parse a dice notation expression::
103103The result can be accessed just by calling the 'value' method as many times as
104104needed, which will generate a new random value each time it is called::
105105
106- print(dice.value ())
107- print(dice.value ())
106+ print(dice.roll ())
107+ print(dice.roll ())
108108
109109Testing
110110-------
@@ -117,7 +117,7 @@ This will delegate the execution to tox.
117117
118118It is possible to run just one of the test profiles, in this case the py36 profile:
119119
120- ``python setup.py test -p "py36 " ``
120+ ``python setup.py test -p "py38 " ``
121121
122122Collaborate
123123-----------
Original file line number Diff line number Diff line change 77 :license: MIT, see LICENSE for more details.
88"""
99
10- __version__ = '1.0.6 '
10+ __version__ = '1.1.0 '
1111__license__ = 'MIT'
Original file line number Diff line number Diff line change 22Notation module
33===============
44
5- .. automodule :: dice_notation.parser.notation
5+ .. automodule :: dice_notation.algebra
66 :members:
77 :undoc-members:
88 :inherited-members:
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ Code docs
55.. toctree ::
66
77 dice
8- notation
8+ algebra
99 parser_common
1010 parser_dice
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments