summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
commit8bde9111157e0eb994159c1506b1cec86298f810 (patch)
tree27d5ea90712d9eee3e678804ef581bac50ff9ba2 /Include
parent4b53359090b7b3cfad128e40083f563f7c1900e4 (diff)
parenteb9957065acaafbf3d8ebee4770ecb13ea0c07c0 (diff)
downloadcpython-8bde9111157e0eb994159c1506b1cec86298f810.zip
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.gz
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.bz2
Issue #27626: Merge spelling fixes from 3.5
Diffstat (limited to 'Include')
-rw-r--r--Include/longobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index eaf7a7e..60f8b22 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -160,7 +160,7 @@ PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
example, if is_signed is 0 and there are more digits in the v than
fit in n; or if is_signed is 1, v < 0, and n is just 1 bit shy of
being large enough to hold a sign bit. OverflowError is set in this
- case, but bytes holds the least-signficant n bytes of the true value.
+ case, but bytes holds the least-significant n bytes of the true value.
*/
PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
unsigned char* bytes, size_t n,