summaryrefslogtreecommitdiffstats
path: root/Modules/_pickle.c
diff options
context:
space:
mode:
authorLeo Arias <leo.arias@canonical.com>2018-02-04 00:36:10 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-04 00:36:10 (GMT)
commitc3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch)
tree56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Modules/_pickle.c
parent589c718a8e3bde017350f248f7f1c009240eb52b (diff)
downloadcpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.zip
cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz
cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.bz2
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Modules/_pickle.c')
-rw-r--r--Modules/_pickle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 05f9a02..9525ad6 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -1015,7 +1015,7 @@ _Pickler_OpcodeBoundary(PicklerObject *self)
if(_Pickler_CommitFrame(self)) {
return -1;
}
- /* Flush the content of the commited frame to the underlying
+ /* Flush the content of the committed frame to the underlying
* file and reuse the pickler buffer for the next frame so as
* to limit memory usage when dumping large complex objects to
* a file.