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

newlines

parent 89c87c2b
...@@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase): ...@@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase):
sys.stderr.write(err) sys.stderr.write(err)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
\ No newline at end of file
...@@ -5,4 +5,4 @@ some_c_function(void) ...@@ -5,4 +5,4 @@ some_c_function(void)
a = 1; a = 1;
b = 2; b = 2;
} }
\ No newline at end of file
...@@ -386,4 +386,4 @@ def main(trace_code=False): ...@@ -386,4 +386,4 @@ def main(trace_code=False):
else: else:
_main() _main()
main() main()
\ No newline at end of file
...@@ -1286,4 +1286,4 @@ class CyLine(gdb.Function, CythonBase): ...@@ -1286,4 +1286,4 @@ class CyLine(gdb.Function, CythonBase):
return self.get_cython_lineno() return self.get_cython_lineno()
cy = CyCy.register() cy = CyCy.register()
\ No newline at end of file
...@@ -2384,4 +2384,4 @@ class PyExec(gdb.Command): ...@@ -2384,4 +2384,4 @@ class PyExec(gdb.Command):
executor.evalcode(expr, input_type, global_dict, local_dict) executor.evalcode(expr, input_type, global_dict, local_dict)
py_exec = FixGdbCommand('py-exec', '-py-exec') py_exec = FixGdbCommand('py-exec', '-py-exec')
_py_exec = PyExec("-py-exec", gdb.COMMAND_DATA, gdb.COMPLETE_NONE) _py_exec = PyExec("-py-exec", gdb.COMMAND_DATA, gdb.COMPLETE_NONE)
\ No newline at end of file
...@@ -5,4 +5,4 @@ cdef void foo(): ...@@ -5,4 +5,4 @@ cdef void foo():
i = j = c i = j = c
a = b = k a = b = k
(a, b), c = (d, e), f = (x, y), z (a, b), c = (d, e), f = (x, y), z
# a, b = p, q = x, y # a, b = p, q = x, y
\ No newline at end of file
...@@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham: ...@@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham:
cdef Ham ham cdef Ham ham
ham = None ham = None
\ No newline at end of file
...@@ -23,4 +23,4 @@ def f(a, b, c): ...@@ -23,4 +23,4 @@ def f(a, b, c):
i = 1 i = 1
\ No newline at end of file
...@@ -2,4 +2,4 @@ def f(): ...@@ -2,4 +2,4 @@ def f():
from spam import eggs from spam import eggs
from spam.morespam import bacon, eggs, ham from spam.morespam import bacon, eggs, ham
from spam import eggs as ova from spam import eggs as ova
\ No newline at end of file
...@@ -8,4 +8,4 @@ def z(a, b, c): ...@@ -8,4 +8,4 @@ def z(a, b, c):
f(x = 42, **b) f(x = 42, **b)
f(a, *b) f(a, *b)
f(a, x = 42, *b, **c) f(a, x = 42, *b, **c)
\ No newline at end of file
...@@ -3,4 +3,4 @@ def f(): ...@@ -3,4 +3,4 @@ def f():
import spam.eggs import spam.eggs
import spam, eggs, ham import spam, eggs, ham
import spam as tasty import spam as tasty
\ No newline at end of file
...@@ -14,4 +14,4 @@ a[f(2)] += 4 ...@@ -14,4 +14,4 @@ a[f(2)] += 4
print x[1] print x[1]
print a[1] print a[1]
x[<object>f(1)] = 15 x[<object>f(1)] = 15
\ No newline at end of file
...@@ -16,4 +16,4 @@ def f(a, b, c, x): ...@@ -16,4 +16,4 @@ def f(a, b, c, x):
finally: finally:
i = 42 i = 42
\ No newline at end of file
...@@ -64,4 +64,4 @@ cdef class EqualsEvens: ...@@ -64,4 +64,4 @@ cdef class EqualsEvens:
elif op == Py_NE: elif op == Py_NE:
return other % 2 == 1 return other % 2 == 1
else: else:
return False return False
\ No newline at end of file
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