summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2011-03-19 14:15:28 (GMT)
committerSkip Montanaro <skip@pobox.com>2011-03-19 14:15:28 (GMT)
commitb61efd0a68a392e22e5f4a46e03b250977e6236b (patch)
treeb98bee40cb949aca3c50392d72d9858487dbb890 /Python/ceval.c
parentb40dea7499281b288f513fdbe17dad198eb21ffe (diff)
parenta4d5b0cb620d8dfc07623f4fe2b551257217589d (diff)
downloadcpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.zip
cpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.tar.gz
cpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.tar.bz2
commit merge
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 9572918..d2444aa 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -26,7 +26,7 @@
typedef unsigned long long uint64;
-/* PowerPC suppport.
+/* PowerPC support.
"__ppc__" appears to be the preprocessor definition to detect on OS X, whereas
"__powerpc__" appears to be the correct one for Linux with GCC
*/
@@ -1266,7 +1266,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
if (_Py_atomic_load_relaxed(&eval_breaker)) {
if (*next_instr == SETUP_FINALLY) {
/* Make the last opcode before
- a try: finally: block uninterruptable. */
+ a try: finally: block uninterruptible. */
goto fast_next_opcode;
}
tstate->tick_counter++;