Skip to content

Commit

Permalink
Fix benchmark (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka authored Nov 3, 2020
1 parent 1ce7c84 commit da13791
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@


cython_setup = """\
from yarl.quoting import _Quoter as Quoter
from yarl.quoting import _Unquoter as Unquoter
from yarl._quoting_c import _Quoter as Quoter
from yarl._quoting_c import _Unquoter as Unquoter
"""

python_setup = """\
from yarl.quoting import _PyQuoter as Quoter
from yarl.quoting import _PyUnquoter as Unquoter
from yarl._quoting_py import _Quoter as Quoter
from yarl._quoting_py import _Unquoter as Unquoter
"""


Expand Down

0 comments on commit da13791

Please sign in to comment.