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
65d5bc4a
Commit
65d5bc4a
authored
Feb 18, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce a tiny bit of overhead in a very long running test.
parent
0b81c765
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tests/run/trashcan.pyx
tests/run/trashcan.pyx
+4
-4
No files found.
tests/run/trashcan.pyx
View file @
65d5bc4a
...
...
@@ -33,7 +33,7 @@ cdef class Recurse:
cdef
public
attr
cdef
int
deallocated
def
__init__
(
self
,
x
):
def
__
c
init__
(
self
,
x
):
self
.
attr
=
x
def
__dealloc__
(
self
):
...
...
@@ -68,7 +68,7 @@ cdef class RecurseFreelist:
cdef
public
attr
cdef
int
deallocated
def
__init__
(
self
,
x
):
def
__
c
init__
(
self
,
x
):
self
.
attr
=
x
def
__dealloc__
(
self
):
...
...
@@ -118,7 +118,7 @@ cdef class Sub1(Base):
"""
cdef
public
attr
def
__init__
(
self
,
x
):
def
__
c
init__
(
self
,
x
):
self
.
attr
=
x
def
__dealloc__
(
self
):
...
...
@@ -140,7 +140,7 @@ cdef class Sub2(Middle):
"""
cdef
public
attr
def
__init__
(
self
,
x
):
def
__
c
init__
(
self
,
x
):
self
.
attr
=
x
def
__dealloc__
(
self
):
...
...
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