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
4af9a38b
Commit
4af9a38b
authored
May 17, 2019
by
gsamain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reflect cypclass test change inside nogil_test directory
parent
e8270ec2
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
nogil_test/cypclass_test___new__.pyx
nogil_test/cypclass_test___new__.pyx
+1
-1
nogil_test/cypclass_test_basic.pyx
nogil_test/cypclass_test_basic.pyx
+1
-1
nogil_test/cypclass_test_constructor.pyx
nogil_test/cypclass_test_constructor.pyx
+1
-1
nogil_test/cypclass_test_constructor_optional_arguments.pyx
nogil_test/cypclass_test_constructor_optional_arguments.pyx
+1
-1
nogil_test/cypclass_test_inheritance.pyx
nogil_test/cypclass_test_inheritance.pyx
+1
-1
nogil_test/cypclass_test_keywordnew.pyx
nogil_test/cypclass_test_keywordnew.pyx
+1
-1
nogil_test/cypclass_test_multiple_inheritance.pyx
nogil_test/cypclass_test_multiple_inheritance.pyx
+1
-1
nogil_test/cypclass_test_templates.pyx
nogil_test/cypclass_test_templates.pyx
+1
-1
nogil_test/cypclass_test_type_inference.pyx
nogil_test/cypclass_test_type_inference.pyx
+1
-1
nogil_test/cypclass_test_typecast.pyx
nogil_test/cypclass_test_typecast.pyx
+1
-1
No files found.
nogil_test/cypclass_test___new__.pyx
View file @
4af9a38b
...
...
@@ -83,4 +83,4 @@ cpdef bag():
32
6.8
"""
return
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
+
'
\
n
'
+
str
(
baz
())
+
'
\
n
'
+
str
(
baa
())
print
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
+
'
\
n
'
+
str
(
baz
())
+
'
\
n
'
+
str
(
baa
())
nogil_test/cypclass_test_basic.pyx
View file @
4af9a38b
...
...
@@ -16,4 +16,4 @@ def bag():
>>> bag()
3
"""
return
str
(
foo
())
\ No newline at end of file
print
str
(
foo
())
nogil_test/cypclass_test_constructor.pyx
View file @
4af9a38b
...
...
@@ -24,4 +24,4 @@ def bag():
3
14
"""
return
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
print
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
nogil_test/cypclass_test_constructor_optional_arguments.pyx
View file @
4af9a38b
...
...
@@ -22,4 +22,4 @@ def bag():
3
14
"""
return
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
print
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
nogil_test/cypclass_test_inheritance.pyx
View file @
4af9a38b
...
...
@@ -37,4 +37,4 @@ def bag():
9
2
"""
return
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
+
'
\
n
'
+
str
(
baz
())
print
str
(
foo
())
+
'
\
n
'
+
str
(
bar
())
+
'
\
n
'
+
str
(
baz
())
nogil_test/cypclass_test_keywordnew.pyx
View file @
4af9a38b
...
...
@@ -16,4 +16,4 @@ def bag():
>>> bag()
3
"""
return
str
(
foo
())
\ No newline at end of file
print
str
(
foo
())
nogil_test/cypclass_test_multiple_inheritance.pyx
View file @
4af9a38b
...
...
@@ -44,5 +44,5 @@ cpdef bag():
c
=
C
(
5
)
c
+=
a
c
-=
b
return
str
(
a
.
a
)
+
'
\
n
'
+
str
(
b
.
b
)
+
'
\
n
'
+
str
(
c
.
a
)
+
'
\
n
'
+
str
(
c
.
b
)
\
print
str
(
a
.
a
)
+
'
\
n
'
+
str
(
b
.
b
)
+
'
\
n
'
+
str
(
c
.
a
)
+
'
\
n
'
+
str
(
c
.
b
)
\
+
'
\
n
'
+
str
(
A
.
getter
(
c
))
+
'
\
n
'
+
str
(
B
.
getter
(
c
))
nogil_test/cypclass_test_templates.pyx
View file @
4af9a38b
...
...
@@ -27,4 +27,4 @@ cpdef bag():
cdef
SomeMemory
[
int
,
double
]
o
=
SomeMemory
[
int
,
double
](
1
,
2.3
)
cdef
SomeMemory
[
int
,
int
]
b
=
new
SomeMemory
[
int
,
int
]()
del
b
return
str
(
o
.
a
)
+
'
\
n
'
+
str
(
o
.
b
)
+
'
\
n
'
+
str
(
o
.
first
())
+
'
\
n
'
+
str
(
o
.
second
())
print
str
(
o
.
a
)
+
'
\
n
'
+
str
(
o
.
b
)
+
'
\
n
'
+
str
(
o
.
first
())
+
'
\
n
'
+
str
(
o
.
second
())
nogil_test/cypclass_test_type_inference.pyx
View file @
4af9a38b
...
...
@@ -34,4 +34,4 @@ cpdef bag():
o3
+=
o2
o1
=
o2
*
o3
return
str
(
o1
.
a
)
+
'
\
n
'
+
str
(
o2
.
a
)
+
'
\
n
'
+
str
(
o3
.
a
)
print
str
(
o1
.
a
)
+
'
\
n
'
+
str
(
o2
.
a
)
+
'
\
n
'
+
str
(
o3
.
a
)
nogil_test/cypclass_test_typecast.pyx
View file @
4af9a38b
...
...
@@ -37,5 +37,5 @@ cpdef bag():
cdef
SomeMemory
o
=
SomeMemory
()
o
.
a
=
-
1
cdef
SomeWrapper
w
=
SomeWrapper
(
3
)
return
str
(
<
int
>
o
)
+
'
\
n
'
+
str
(
<
unsigned
int
>
o
)
+
'
\
n
'
+
str
(
<
bint
>
o
)
\
print
str
(
<
int
>
o
)
+
'
\
n
'
+
str
(
<
unsigned
int
>
o
)
+
'
\
n
'
+
str
(
<
bint
>
o
)
\
+
'
\
n
'
+
str
(
<
int
>
<
SomeMemory
>
w
)
+
'
\
n
'
+
str
(
<
bint
>
<
SomeMemory
>
w
)
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