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 /Modules/posixmodule.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 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 4a1c9f3..84b5b99 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11472,7 +11472,7 @@ PyDoc_STRVAR(termsize__doc__, "This function will only be defined if an implementation is\n" \ "available for this system.\n" \ "\n" \ - "shutil.get_terminal_size is the high-level function which should \n" \ + "shutil.get_terminal_size is the high-level function which should\n" \ "normally be used, os.get_terminal_size is the low-level implementation."); static PyObject* |