diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:56:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:56:09 (GMT) |
commit | 419e23cbb07a624609a219919eaecd3c61d8e9b4 (patch) | |
tree | 164360b1ac41a74ba86a16d8918770540d06c641 /Modules | |
parent | 5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755 (diff) | |
download | cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.zip cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.tar.gz cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.tar.bz2 |
#18466: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 2 | ||||
-rw-r--r-- | Modules/unicodedata.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index b6c2f6b..3ff76a5 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1455,7 +1455,7 @@ static PyObject *PySSL_SSLshutdown(PySSLObject *self) * Otherwise OpenSSL might read in too much data, * eating clear text data that happens to be * transmitted after the SSL shutdown. - * Should be safe to call repeatedly everytime this + * Should be safe to call repeatedly every time this * function is used and the shutdown_seen_zero != 0 * condition is met. */ diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 95bdf3c..edc811e 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -520,7 +520,7 @@ nfd_nfkd(PyObject *self, PyObject *input, int k) while(stackptr) { Py_UNICODE code = stack[--stackptr]; /* Hangul Decomposition adds three characters in - a single step, so we need atleast that much room. */ + a single step, so we need at least that much room. */ if (space < 3) { Py_ssize_t newsize = PyString_GET_SIZE(result) + 10; space += 10; |