From 53a4ad7f90676c70cf7b734133489393aa316191 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 9 Dec 2010 05:18:22 -0800 Subject: [PATCH] newlines --- Cython/Debugger/Tests/TestLibCython.py | 2 +- Cython/Debugger/Tests/cfuncs.c | 2 +- Cython/Debugger/Tests/test_libcython_in_gdb.py | 2 +- Cython/Debugger/libcython.py | 2 +- Cython/Debugger/libpython.py | 2 +- tests/broken/cascadedass.pyx | 2 +- tests/compile/extimported.pyx | 2 +- tests/compile/for.pyx | 2 +- tests/compile/fromimport.pyx | 2 +- tests/compile/gencall.pyx | 2 +- tests/compile/import.pyx | 2 +- tests/compile/indices.pyx | 2 +- tests/compile/tryfinally.pyx | 2 +- tests/run/slice_ptr.pyx | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cython/Debugger/Tests/TestLibCython.py b/Cython/Debugger/Tests/TestLibCython.py index 8489c79e..f02c2e8b 100644 --- a/Cython/Debugger/Tests/TestLibCython.py +++ b/Cython/Debugger/Tests/TestLibCython.py @@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase): sys.stderr.write(err) if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/Cython/Debugger/Tests/cfuncs.c b/Cython/Debugger/Tests/cfuncs.c index 35fb0290..081c3653 100644 --- a/Cython/Debugger/Tests/cfuncs.c +++ b/Cython/Debugger/Tests/cfuncs.c @@ -5,4 +5,4 @@ some_c_function(void) a = 1; b = 2; -} \ No newline at end of file +} diff --git a/Cython/Debugger/Tests/test_libcython_in_gdb.py b/Cython/Debugger/Tests/test_libcython_in_gdb.py index 1d61cd23..f45372e5 100644 --- a/Cython/Debugger/Tests/test_libcython_in_gdb.py +++ b/Cython/Debugger/Tests/test_libcython_in_gdb.py @@ -386,4 +386,4 @@ def main(trace_code=False): else: _main() -main() \ No newline at end of file +main() diff --git a/Cython/Debugger/libcython.py b/Cython/Debugger/libcython.py index 54d09b3f..d766f565 100644 --- a/Cython/Debugger/libcython.py +++ b/Cython/Debugger/libcython.py @@ -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() diff --git a/Cython/Debugger/libpython.py b/Cython/Debugger/libpython.py index b871756e..fd8cdeea 100644 --- a/Cython/Debugger/libpython.py +++ b/Cython/Debugger/libpython.py @@ -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) diff --git a/tests/broken/cascadedass.pyx b/tests/broken/cascadedass.pyx index 1f9a7ead..c8034e8d 100644 --- a/tests/broken/cascadedass.pyx +++ b/tests/broken/cascadedass.pyx @@ -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 diff --git a/tests/compile/extimported.pyx b/tests/compile/extimported.pyx index 2de7ceee..7d32048d 100644 --- a/tests/compile/extimported.pyx +++ b/tests/compile/extimported.pyx @@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham: cdef Ham ham -ham = None \ No newline at end of file +ham = None diff --git a/tests/compile/for.pyx b/tests/compile/for.pyx index c5198d26..d56c7a48 100644 --- a/tests/compile/for.pyx +++ b/tests/compile/for.pyx @@ -23,4 +23,4 @@ def f(a, b, c): i = 1 - \ No newline at end of file + diff --git a/tests/compile/fromimport.pyx b/tests/compile/fromimport.pyx index 22936aa2..873649da 100644 --- a/tests/compile/fromimport.pyx +++ b/tests/compile/fromimport.pyx @@ -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 + diff --git a/tests/compile/gencall.pyx b/tests/compile/gencall.pyx index 54bfa2c4..22818727 100644 --- a/tests/compile/gencall.pyx +++ b/tests/compile/gencall.pyx @@ -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 + diff --git a/tests/compile/import.pyx b/tests/compile/import.pyx index 291f8871..72981be9 100644 --- a/tests/compile/import.pyx +++ b/tests/compile/import.pyx @@ -3,4 +3,4 @@ def f(): import spam.eggs import spam, eggs, ham import spam as tasty - \ No newline at end of file + diff --git a/tests/compile/indices.pyx b/tests/compile/indices.pyx index 527ad159..6daab50d 100644 --- a/tests/compile/indices.pyx +++ b/tests/compile/indices.pyx @@ -14,4 +14,4 @@ a[f(2)] += 4 print x[1] print a[1] -x[f(1)] = 15 \ No newline at end of file +x[f(1)] = 15 diff --git a/tests/compile/tryfinally.pyx b/tests/compile/tryfinally.pyx index dcbd0b88..8c418b20 100644 --- a/tests/compile/tryfinally.pyx +++ b/tests/compile/tryfinally.pyx @@ -16,4 +16,4 @@ def f(a, b, c, x): finally: i = 42 - \ No newline at end of file + diff --git a/tests/run/slice_ptr.pyx b/tests/run/slice_ptr.pyx index d682f8b9..6da040b4 100644 --- a/tests/run/slice_ptr.pyx +++ b/tests/run/slice_ptr.pyx @@ -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 -- 2.26.2