Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
31c96c0e
Commit
31c96c0e
authored
Aug 08, 2015
by
Kevin Modzelewski
Committed by
Kevin Modzelewski
Aug 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the in-tree benchmarks
Which piggy-back on the integration tests for getting their dependencies.
parent
24041726
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
minibenchmarks/django_template.py
minibenchmarks/django_template.py
+1
-1
minibenchmarks/pyxl_bench.py
minibenchmarks/pyxl_bench.py
+1
-1
minibenchmarks/sqlalchemy_declarative.py
minibenchmarks/sqlalchemy_declarative.py
+1
-1
minibenchmarks/sqlalchemy_imperative.py
minibenchmarks/sqlalchemy_imperative.py
+1
-1
No files found.
minibenchmarks/django_template.py
View file @
31c96c0e
import
os
import
os
import
sys
import
sys
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
integration
/django"
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
testsuite/lib
/django"
))
from
django.template.base
import
Origin
,
Template
,
Context
,
TemplateDoesNotExist
from
django.template.base
import
Origin
,
Template
,
Context
,
TemplateDoesNotExist
from
django.conf
import
settings
from
django.conf
import
settings
...
...
minibenchmarks/pyxl_bench.py
View file @
31c96c0e
import
os
import
os
import
sys
import
sys
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
integration
/pyxl/"
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
testsuite/lib
/pyxl/"
))
from
pyxl.codec.register
import
pyxl_transform_string
from
pyxl.codec.register
import
pyxl_transform_string
...
...
minibenchmarks/sqlalchemy_declarative.py
View file @
31c96c0e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
import
os
import
os
import
sys
import
sys
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
integration
/sqlalchemy/lib"
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
testsuite/lib
/sqlalchemy/lib"
))
from
sqlalchemy
import
Column
,
ForeignKey
,
Integer
,
String
from
sqlalchemy
import
Column
,
ForeignKey
,
Integer
,
String
from
sqlalchemy.ext.declarative
import
declarative_base
from
sqlalchemy.ext.declarative
import
declarative_base
...
...
minibenchmarks/sqlalchemy_imperative.py
View file @
31c96c0e
import
os
import
os
import
sys
import
sys
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
integration
/sqlalchemy/lib"
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../test/
testsuite/lib
/sqlalchemy/lib"
))
from
sqlalchemy
import
Column
,
ForeignKey
,
Integer
,
String
,
Table
,
MetaData
from
sqlalchemy
import
Column
,
ForeignKey
,
Integer
,
String
,
Table
,
MetaData
from
sqlalchemy.ext.declarative
import
declarative_base
from
sqlalchemy.ext.declarative
import
declarative_base
...
...
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