Skip to content

Commit 3830135

Browse files
committed
Merge latest master branch
Signed-off-by: Philippe Ombredanne <[email protected]>
2 parents 5f93c8b + 0a1e737 commit 3830135

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Example
2727
>>> expression1
2828
AND(Symbol('apple'), OR(Symbol('oranges'), Symbol('banana')), NOT(Symbol('banana')))
2929

30-
>>> expression2 = algebra.parse(u'(oranges | banana) and not banana & apple', simplify=True)
30+
>>> expression2 = algebra.parse('(oranges | banana) and not banana & apple', simplify=True)
3131
>>> expression2
3232
AND(Symbol('apple'), NOT(Symbol('banana')), Symbol('oranges'))
3333

3434
>>> expression1 == expression2
3535
False
3636
>>> expression1.simplify() == expression2
37-
True
37+
True
3838

3939

4040
Documentation
@@ -101,6 +101,9 @@ interpreters that are actually installed on your machine:
101101

102102
tox -e py36
103103

104+
Alternatively use pytest.
105+
106+
104107
License
105108
-------
106109

0 commit comments

Comments
 (0)