#11565: Fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 7af5caf..6f998ce 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -712,7 +712,7 @@
is_signed = *pendbyte >= 0x80;
/* Compute numsignificantbytes. This consists of finding the most
- significant byte. Leading 0 bytes are insignficant if the number
+ significant byte. Leading 0 bytes are insignificant if the number
is positive, and leading 0xff bytes if negative. */
{
size_t i;
@@ -3196,7 +3196,7 @@
if (failed)
return NULL;
/* 'aexp' and 'bexp' were initialized to -1 to silence gcc-4.0.x,
- but should really be set correctly after sucessful calls to
+ but should really be set correctly after successful calls to
_PyLong_AsScaledDouble() */
assert(aexp >= 0 && bexp >= 0);