diff options
author | oldk <oldk1331@users.noreply.github.com> | 2018-02-02 08:52:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-02 08:52:55 (GMT) |
commit | aa0735f597b072c0eb00404c4d7df359ddc26755 (patch) | |
tree | c6ff6cd0d312d35d57b52821df54abc009f95b7a /Objects/odictobject.c | |
parent | 2efb9735899c7c642f3e75a121af82b1679577d3 (diff) | |
download | cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.zip cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.tar.gz cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.tar.bz2 |
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
Diffstat (limited to 'Objects/odictobject.c')
-rw-r--r-- | Objects/odictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/odictobject.c b/Objects/odictobject.c index bf19fed..1796b96 100644 --- a/Objects/odictobject.c +++ b/Objects/odictobject.c @@ -866,7 +866,7 @@ PyDoc_STRVAR(odict_delitem__doc__, "od.__delitem__(y) <==> del od[y]"); /* __eq__() */ PyDoc_STRVAR(odict_eq__doc__, -"od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive \n\ +"od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive\n\ while comparison to a regular mapping is order-insensitive.\n\ "); |