[Python-checkins] cpython (3.5): Issue #25393: Fix probable copy/paste error in resource docs

zach.ware python-checkins at python.org
Tue Jul 19 17:48:40 EDT 2016


https://hg.python.org/cpython/rev/0fe2b7509707
changeset:   102410:0fe2b7509707
branch:      3.5
parent:      102402:7571432200a2
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Jul 19 16:41:20 2016 -0500
summary:
  Issue #25393: Fix probable copy/paste error in resource docs

Patch by Alakshendra Yadav.

files:
  Doc/library/resource.rst |  6 +++---
  Misc/ACKS                |  1 +
  2 files changed, 4 insertions(+), 3 deletions(-)


diff --git a/Doc/library/resource.rst b/Doc/library/resource.rst
--- a/Doc/library/resource.rst
+++ b/Doc/library/resource.rst
@@ -125,8 +125,7 @@
 
 .. data:: RLIMIT_FSIZE
 
-   The maximum size of a file which the process may create.  This only affects the
-   stack of the main thread in a multi-threaded process.
+   The maximum size of a file which the process may create.
 
 
 .. data:: RLIMIT_DATA
@@ -136,7 +135,8 @@
 
 .. data:: RLIMIT_STACK
 
-   The maximum size (in bytes) of the call stack for the current process.
+   The maximum size (in bytes) of the call stack for the current process.  This only
+   affects the stack of the main thread in a multi-threaded process.
 
 
 .. data:: RLIMIT_RSS
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1632,6 +1632,7 @@
 Robert Xiao
 Florent Xicluna
 Arnon Yaari
+Alakshendra Yadav
 Hirokazu Yamamoto
 Ka-Ping Yee
 Jason Yeo

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list