Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
ffac9653
Commit
ffac9653
authored
Oct 14, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed test_speed after switch to unicode. For python 3 only at the
moment.
parent
9fbbdd17
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
test_speed.py
tests/speed/test_speed.py
+8
-3
No files found.
tests/speed/test_speed.py
View file @
ffac9653
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
#######################################################################
#######################################################################
# Name: test_speed
# Name: test_speed
# Purpose: Performance test of arpeggio parser
# Purpose: Basic performance test of arpeggio parser to check for
# performance differences of various approaches.
# Author: Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# Author: Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# Copyright: (c) 2014 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# Copyright: (c) 2014 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# License: MIT License
# License: MIT License
#######################################################################
#######################################################################
import
timeit
,
sys
from
__future__
import
unicode_literals
import
timeit
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
# Setup code works for python 3 only. Haven't figured out yet how to
# from __future__ import unicode_literals in the setup code
setup
=
'''
setup
=
'''
import codecs
from arpeggio import OneOrMore, ZeroOrMore, EOF, ParserPython, Optional
from arpeggio import OneOrMore, ZeroOrMore, EOF, ParserPython, Optional
from arpeggio import RegExMatch as _
from arpeggio import RegExMatch as _
...
@@ -22,7 +27,7 @@ def expression(): return term, ZeroOrMore(["+", "-"], term)
...
@@ -22,7 +27,7 @@ def expression(): return term, ZeroOrMore(["+", "-"], term)
def calcfile(): return OneOrMore(expression), EOF
def calcfile(): return OneOrMore(expression), EOF
parser = ParserPython(calcfile, reduce_tree=True)
parser = ParserPython(calcfile, reduce_tree=True)
with
open("input.txt", "r
") as f:
with
codecs.open("input.txt", encoding="utf-8
") as f:
input = f.read()
input = f.read()
'''
'''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment