newlines
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Dec 2010 13:18:22 +0000 (05:18 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Dec 2010 13:18:22 +0000 (05:18 -0800)
14 files changed:
Cython/Debugger/Tests/TestLibCython.py
Cython/Debugger/Tests/cfuncs.c
Cython/Debugger/Tests/test_libcython_in_gdb.py
Cython/Debugger/libcython.py
Cython/Debugger/libpython.py
tests/broken/cascadedass.pyx
tests/compile/extimported.pyx
tests/compile/for.pyx
tests/compile/fromimport.pyx
tests/compile/gencall.pyx
tests/compile/import.pyx
tests/compile/indices.pyx
tests/compile/tryfinally.pyx
tests/run/slice_ptr.pyx

index 8489c79e544bb1924cff146eabbb1330439017c5..f02c2e8b11a79f479565d19cccb2e677cdb0318d 100644 (file)
@@ -191,4 +191,4 @@ class TestAll(GdbDebuggerTestCase):
         sys.stderr.write(err)
 
 if __name__ == '__main__':
-    unittest.main()
\ No newline at end of file
+    unittest.main()
index 35fb029039d9725e77e9436767bae5b01076d62e..081c3653337b8de8645994fba439d369c30adab0 100644 (file)
@@ -5,4 +5,4 @@ some_c_function(void)
     
     a = 1;
     b = 2;
-}
\ No newline at end of file
+}
index 1d61cd23608571fc2499cb9660f2b30e3d66fd93..f45372e5ed036dbe984f0994e300443752b6a9a1 100644 (file)
@@ -386,4 +386,4 @@ def main(trace_code=False):
     else:
         _main()
 
-main()
\ No newline at end of file
+main()
index 54d09b3f8765cf63aa6ff70f43f129ffe109856e..d766f56558b792fef46cdd9b2a46f7da87baa674 100644 (file)
@@ -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()
index b871756eeba2ef296163f21f20793f502bd0b5d7..fd8cdeea036a24ffbc92fee0f2ff343dbba08de2 100644 (file)
@@ -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)
index 1f9a7eadb855e64527c86e8c57747e165c717ddd..c8034e8d6eb404ab6db638efdd0315c5171ff742 100644 (file)
@@ -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
index 2de7ceee5ecf8e1c30ffdbd5c6c44e0a47cf8217..7d32048d66887b48a95799746fdf11649e70af78 100644 (file)
@@ -3,4 +3,4 @@ cdef extern class Spam.Eggs.Ham:
 
 cdef Ham ham
 
-ham = None
\ No newline at end of file
+ham = None
index c5198d2674ad9d2a4cbcf8b62eff3151654a5938..d56c7a4800dcd7a75b460101e3e2add3044cbc59 100644 (file)
@@ -23,4 +23,4 @@ def f(a, b, c):
         i = 1
 
     
-    
\ No newline at end of file
+    
index 22936aa2b3d0d04119fd3e630e4fae11005cbc30..873649da1361473c4d40d2c5302b2f3988f7d13d 100644 (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
+    
index 54bfa2c4dc7d7f3da22865a28d902688aa8feb53..22818727895b813f23529e1f0460422c12024cbe 100644 (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
+    
index 291f88716f372381cd04612ee72ffcbd924bb80a..72981be96b5c2e05c92bfe0f59002b7914419f27 100644 (file)
@@ -3,4 +3,4 @@ def f():
     import spam.eggs
     import spam, eggs, ham
     import spam as tasty
-    
\ No newline at end of file
+    
index 527ad1593f2700d652c654b3ed279674c0feb8f3..6daab50da2e57adb6590d400d857a1757c026115 100644 (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
index dcbd0b88f17481e3abb3888c05fc4091e9c4e3ec..8c418b20387c77514f28d479b33def3838005559 100644 (file)
@@ -16,4 +16,4 @@ def f(a, b, c, x):
         finally:
             i = 42
     
-    
\ No newline at end of file
+    
index d682f8b93dd0204f5b160dc61ee02eadc0348415..6da040b46c9421fa896c0efa70fda237e8e30cfd 100644 (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