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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
53a4ad7f
Commit
53a4ad7f
authored
Dec 09, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
newlines
parent
89c87c2b
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
14 deletions
+14
-14
Cython/Debugger/Tests/TestLibCython.py
Cython/Debugger/Tests/TestLibCython.py
+1
-1
Cython/Debugger/Tests/cfuncs.c
Cython/Debugger/Tests/cfuncs.c
+1
-1
Cython/Debugger/Tests/test_libcython_in_gdb.py
Cython/Debugger/Tests/test_libcython_in_gdb.py
+1
-1
Cython/Debugger/libcython.py
Cython/Debugger/libcython.py
+1
-1
Cython/Debugger/libpython.py
Cython/Debugger/libpython.py
+1
-1
tests/broken/cascadedass.pyx
tests/broken/cascadedass.pyx
+1
-1
tests/compile/extimported.pyx
tests/compile/extimported.pyx
+1
-1
tests/compile/for.pyx
tests/compile/for.pyx
+1
-1
tests/compile/fromimport.pyx
tests/compile/fromimport.pyx
+1
-1
tests/compile/gencall.pyx
tests/compile/gencall.pyx
+1
-1
tests/compile/import.pyx
tests/compile/import.pyx
+1
-1
tests/compile/indices.pyx
tests/compile/indices.pyx
+1
-1
tests/compile/tryfinally.pyx
tests/compile/tryfinally.pyx
+1
-1
tests/run/slice_ptr.pyx
tests/run/slice_ptr.pyx
+1
-1
No files found.
Cython/Debugger/Tests/TestLibCython.py
View file @
53a4ad7f
...
...
@@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase):
sys
.
stderr
.
write
(
err
)
if
__name__
==
'__main__'
:
unittest
.
main
()
\ No newline at end of file
unittest
.
main
()
Cython/Debugger/Tests/cfuncs.c
View file @
53a4ad7f
...
...
@@ -5,4 +5,4 @@ some_c_function(void)
a
=
1
;
b
=
2
;
}
\ No newline at end of file
}
Cython/Debugger/Tests/test_libcython_in_gdb.py
View file @
53a4ad7f
...
...
@@ -386,4 +386,4 @@ def main(trace_code=False):
else
:
_main
()
main
()
\ No newline at end of file
main
()
Cython/Debugger/libcython.py
View file @
53a4ad7f
...
...
@@ -1286,4 +1286,4 @@ class CyLine(gdb.Function, CythonBase):
return
self
.
get_cython_lineno
()
cy
=
CyCy
.
register
()
\ No newline at end of file
cy
=
CyCy
.
register
()
Cython/Debugger/libpython.py
View file @
53a4ad7f
...
...
@@ -2384,4 +2384,4 @@ class PyExec(gdb.Command):
executor.evalcode(expr, input_type, global_dict, local_dict)
py_exec = FixGdbCommand('py-exec', '-py-exec')
_py_exec = PyExec("-py-exec", gdb.COMMAND_DATA, gdb.COMPLETE_NONE)
\ No newline at end of file
_py_exec = PyExec("-py-exec", gdb.COMMAND_DATA, gdb.COMPLETE_NONE)
tests/broken/cascadedass.pyx
View file @
53a4ad7f
...
...
@@ -5,4 +5,4 @@ cdef void foo():
i
=
j
=
c
a
=
b
=
k
(
a
,
b
),
c
=
(
d
,
e
),
f
=
(
x
,
y
),
z
# a, b = p, q = x, y
\ No newline at end of file
# a, b = p, q = x, y
tests/compile/extimported.pyx
View file @
53a4ad7f
...
...
@@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham:
cdef
Ham
ham
ham
=
None
\ No newline at end of file
ham
=
None
tests/compile/for.pyx
View file @
53a4ad7f
...
...
@@ -23,4 +23,4 @@ def f(a, b, c):
i
=
1
\ No newline at end of file
tests/compile/fromimport.pyx
View file @
53a4ad7f
...
...
@@ -2,4 +2,4 @@ def f():
from
spam
import
eggs
from
spam.morespam
import
bacon
,
eggs
,
ham
from
spam
import
eggs
as
ova
\ No newline at end of file
tests/compile/gencall.pyx
View file @
53a4ad7f
...
...
@@ -8,4 +8,4 @@ def z(a, b, c):
f
(
x
=
42
,
**
b
)
f
(
a
,
*
b
)
f
(
a
,
x
=
42
,
*
b
,
**
c
)
\ No newline at end of file
tests/compile/import.pyx
View file @
53a4ad7f
...
...
@@ -3,4 +3,4 @@ def f():
import
spam.eggs
import
spam
,
eggs
,
ham
import
spam
as
tasty
\ No newline at end of file
tests/compile/indices.pyx
View file @
53a4ad7f
...
...
@@ -14,4 +14,4 @@ a[f(2)] += 4
print
x
[
1
]
print
a
[
1
]
x
[
<
object
>
f
(
1
)]
=
15
\ No newline at end of file
x
[
<
object
>
f
(
1
)]
=
15
tests/compile/tryfinally.pyx
View file @
53a4ad7f
...
...
@@ -16,4 +16,4 @@ def f(a, b, c, x):
finally
:
i
=
42
\ No newline at end of file
tests/run/slice_ptr.pyx
View file @
53a4ad7f
...
...
@@ -64,4 +64,4 @@ cdef class EqualsEvens:
elif
op
==
Py_NE
:
return
other
%
2
==
1
else
:
return
False
\ No newline at end of file
return
False
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