diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-12-27 12:09:11 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-12-27 12:09:11 (GMT) |
commit | 8e2bdc8fe8c43c6a41ca89c10c8764486d2ef74d (patch) | |
tree | 40dd25236da5e778d425d99bb6e2d08a52bf7f3e | |
parent | 6664e8c741c8f247805968583a3007a43231eab6 (diff) | |
download | cpython-8e2bdc8fe8c43c6a41ca89c10c8764486d2ef74d.zip cpython-8e2bdc8fe8c43c6a41ca89c10c8764486d2ef74d.tar.gz cpython-8e2bdc8fe8c43c6a41ca89c10c8764486d2ef74d.tar.bz2 |
Move versionadded inside of the get_terminal_size() block
-rw-r--r-- | Doc/library/shutil.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 669475f..b020bb3 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -625,8 +625,6 @@ The resulting archive contains: Querying the size of the output terminal ---------------------------------------- -.. versionadded:: 3.3 - .. function:: get_terminal_size(fallback=(columns, lines)) Get the size of the terminal window. @@ -650,6 +648,8 @@ Querying the size of the output terminal See also: The Single UNIX Specification, Version 2, `Other Environment Variables`_. + .. versionadded:: 3.3 + .. _`Other Environment Variables`: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html#tag_002_003 |