Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
b5d5b9f4
Commit
b5d5b9f4
authored
May 01, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed dead copy of test file
parent
19698429
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
84 deletions
+0
-84
tests/broken/e_nogil.pyx
tests/broken/e_nogil.pyx
+0
-84
No files found.
tests/broken/e_nogil.pyx
deleted
100644 → 0
View file @
19698429
cdef
object
f
(
object
x
)
nogil
:
pass
cdef
void
g
(
int
x
)
nogil
:
cdef
object
z
z
=
None
cdef
void
h
(
int
x
)
nogil
:
p
()
cdef
object
p
()
nogil
:
pass
cdef
void
r
()
nogil
:
q
()
cdef
void
(
*
fp
)()
cdef
void
(
*
fq
)()
nogil
cdef
extern
void
u
()
cdef
object
m
():
global
fp
,
fq
cdef
object
x
,
y
,
obj
cdef
int
i
,
j
,
k
global
fred
q
()
with
nogil
:
r
()
q
()
i
=
42
obj
=
None
17L
7j
asdf
`"Hello"`
import
fred
from
fred
import
obj
for
x
in
obj
:
pass
obj
[
i
]
obj
[
i
:
j
]
obj
[
i
:
j
:
k
]
obj
.
fred
(
x
,
y
)
[
x
,
y
]
{
x
:
y
}
obj
and
x
t
(
obj
)
f
(
42
)
x
+
obj
-
obj
x
=
y
=
obj
x
,
y
=
y
,
x
obj
[
i
]
=
x
obj
.
fred
=
x
print
obj
del
fred
return
obj
raise
obj
if
obj
:
pass
while
obj
:
pass
for
x
<=
obj
<=
y
:
pass
try
:
pass
except
:
pass
try
:
pass
finally
:
pass
fq
=
u
fq
=
fp
cdef
void
q
():
pass
cdef
class
C
:
pass
cdef
void
t
(
C
c
)
nogil
:
pass
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