# HG changeset patch # User mattip # Date 1440774918 -10800 # Fri Aug 28 18:15:18 2015 +0300 # Branch 2.7 # Node ID a32b2b63186c1bdc445e96eb6b82964efde1f88b # Parent da483bda6efc040578bb4222391973bd71cbe4b2 document default for stack_size() diff -r da483bda6efc -r a32b2b63186c Doc/library/thread.rst --- a/Doc/library/thread.rst Mon Aug 24 16:17:13 2015 -0400 +++ b/Doc/library/thread.rst Fri Aug 28 18:15:18 2015 +0300 @@ -93,7 +93,7 @@ may be recycled when a thread exits and another thread is created. -.. function:: stack_size([size]) +.. function:: stack_size(size=0) Return the thread stack size used when creating new threads. The optional *size* argument specifies the stack size to be used for subsequently created diff -r da483bda6efc -r a32b2b63186c Doc/library/threading.rst --- a/Doc/library/threading.rst Mon Aug 24 16:17:13 2015 -0400 +++ b/Doc/library/threading.rst Fri Aug 28 18:15:18 2015 +0300 @@ -189,7 +189,7 @@ .. versionadded:: 2.3 -.. function:: stack_size([size]) +.. function:: stack_size(size=0) Return the thread stack size used when creating new threads. The optional *size* argument specifies the stack size to be used for subsequently created