Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion patsy/contrasts.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def t(obj, expected):
# we can use "foo".encode here b/c this is python 3!
# a utf-8 encoded euro-sign comes out as a real euro sign.
t("\u20ac".encode("utf-8"), "\u20ac")
# but a iso-8859-15 euro sign can't be decoded, and we fall back on
# but an iso-8859-15 euro sign can't be decoded, and we fall back on
# repr()
t("\u20ac".encode("iso-8859-15"), "b'\\xa4'")

Expand Down
2 changes: 1 addition & 1 deletion patsy/infix_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# Plus it spends energy on tracking where each item in the parse tree comes
# from, to allow high-quality error reporting.
#
# You are expected to provide an collection of Operators, a collection of
# You are expected to provide a collection of Operators, a collection of
# atomic types, and an iterator that provides Tokens. Each Operator should
# have a unique token_type (which is an arbitrary Python object), and each
# Token should have a matching token_type, or one of the special types
Expand Down