diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 02:37:04 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 02:37:04 (GMT) |
commit | 3d36f0f712e8a720e66808e2b634aace11c6bb88 (patch) | |
tree | 175aa2be1d043d8c8a3f4ef0499bef56adaf356e /Objects/stringobject.c | |
parent | 8f1dd224e002f93b67821a7a55db35152928d6da (diff) | |
download | cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.zip cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.tar.gz cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.tar.bz2 |
Spelling and grammar fixes in code comments and documentation
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 342b2db..4e5d917 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -901,7 +901,7 @@ string_print(PyStringObject *op, FILE *fp, int flags) fputc(quote, fp); for (i = 0; i < str_len; i++) { /* Since strings are immutable and the caller should have a - reference, accessing the interal buffer should not be an issue + reference, accessing the internal buffer should not be an issue with the GIL released. */ c = op->ob_sval[i]; if (c == quote || c == '\\') |