projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0dc7e6
)
Debugger: Fix little exception detection bug
author
Mark Florisson
<markflorisson88@gmail.com>
Sat, 26 Mar 2011 11:31:18 +0000
(12:31 +0100)
committer
Mark Florisson
<markflorisson88@gmail.com>
Sat, 26 Mar 2011 11:31:18 +0000
(12:31 +0100)
Cython/Debugger/libpython.py
patch
|
blob
|
history
diff --git
a/Cython/Debugger/libpython.py
b/Cython/Debugger/libpython.py
index 43b4353b7a1aa535fcc738f15efa701510d7fcc8..43e15e1061f383614b30bfbeff0bd36b8e2dc07f 100644
(file)
--- a/
Cython/Debugger/libpython.py
+++ b/
Cython/Debugger/libpython.py
@@
-2195,7
+2195,7
@@
class PythonInfo(LanguageInfo):
inf_value = tstate['curexc_value']
if inf_type:
- return 'An exception was raised: %s
(%s)
' % (inf_value,)
+ return 'An exception was raised: %s' % (inf_value,)
except (ValueError, RuntimeError), e:
# Could not read the variable tstate or it's memory, it's ok
pass