Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nexedi
cython
Commits
292c1eb0
Commit
292c1eb0
authored
Apr 07, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test runner fix
parent
1de01311
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
runtests.py
runtests.py
+3
-1
No files found.
runtests.py
View file @
292c1eb0
...
...
@@ -128,7 +128,6 @@ def memoize(f):
return
res
return
func
@
memoize
def
parse_tags
(
filepath
):
tags
=
defaultdict
(
list
)
for
line
in
open
(
filepath
):
...
...
@@ -144,6 +143,9 @@ def parse_tags(filepath):
tags
[
tag
]
.
extend
([
value
.
strip
()
for
value
in
values
])
return
tags
parse_tags
=
memoize
(
parse_tags
)
class
build_ext
(
_build_ext
):
def
build_extension
(
self
,
ext
):
if
ext
.
language
==
'c++'
:
...
...
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