summaryrefslogtreecommitdiff
path: root/Cython/Debugger
diff options
context:
space:
mode:
authormathbunnyru <mathbunnyru@gmail.com>2017-01-12 00:58:41 +0300
committermathbunnyru <mathbunnyru@gmail.com>2017-01-12 01:09:12 +0300
commit2748f9ef330da1eb928ae7fe4c8cf6b53ccc9a12 (patch)
tree2196ae054e832c0cbc004cae84f0fbedddb63aaa /Cython/Debugger
parent3d4f7a1978f4c03a941a2dcff8136b10638476cd (diff)
downloadcython-2748f9ef330da1eb928ae7fe4c8cf6b53ccc9a12.tar.gz
Delete trailing spaces
Diffstat (limited to 'Cython/Debugger')
-rw-r--r--Cython/Debugger/Tests/codefile10
-rw-r--r--Cython/Debugger/libpython.py4
2 files changed, 7 insertions, 7 deletions
diff --git a/Cython/Debugger/Tests/codefile b/Cython/Debugger/Tests/codefile
index d5392e78e..c64c332de 100644
--- a/Cython/Debugger/Tests/codefile
+++ b/Cython/Debugger/Tests/codefile
@@ -12,9 +12,9 @@ python_var = 13
def spam(a=0):
cdef:
int b, c
-
+
b = c = d = 0
-
+
b = 1
c = 2
int(10)
@@ -23,11 +23,11 @@ def spam(a=0):
some_c_function()
cpdef eggs():
- pass
-
+ pass
+
cdef ham():
pass
-
+
cdef class SomeClass(object):
def spam(self):
pass
diff --git a/Cython/Debugger/libpython.py b/Cython/Debugger/libpython.py
index 2158c1f51..3da3d776c 100644
--- a/Cython/Debugger/libpython.py
+++ b/Cython/Debugger/libpython.py
@@ -2517,8 +2517,8 @@ class FixGdbCommand(gdb.Command):
def fix_gdb(self):
"""
- It seems that invoking either 'cy exec' and 'py-exec' work perfectly
- fine, but after this gdb's python API is entirely broken.
+ It seems that invoking either 'cy exec' and 'py-exec' work perfectly
+ fine, but after this gdb's python API is entirely broken.
Maybe some uncleared exception value is still set?
sys.exc_clear() didn't help. A demonstration: