Commit 53a4ad7f authored by Robert Bradshaw's avatar Robert Bradshaw

newlines

parent 89c87c2b
......@@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase):
sys.stderr.write(err)
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
unittest.main()
......@@ -5,4 +5,4 @@ some_c_function(void)
a = 1;
b = 2;
}
\ No newline at end of file
}
......@@ -386,4 +386,4 @@ def main(trace_code=False):
else:
_main()
main()
\ No newline at end of file
main()
......@@ -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()
......@@ -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)
......@@ -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
......@@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham:
cdef Ham ham
ham = None
\ No newline at end of file
ham = None
......@@ -23,4 +23,4 @@ def f(a, b, c):
i = 1
\ No newline at end of file
......@@ -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
......@@ -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
......@@ -3,4 +3,4 @@ def f():
import spam.eggs
import spam, eggs, ham
import spam as tasty
\ No newline at end of file
......@@ -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
......@@ -16,4 +16,4 @@ def f(a, b, c, x):
finally:
i = 42
\ No newline at end of file
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment