[Python-checkins] cpython (3.3): remove brackets

benjamin.peterson python-checkins at python.org
Thu Jan 2 19:27:06 CET 2014


http://hg.python.org/cpython/rev/8083b8870686
changeset:   88256:8083b8870686
branch:      3.3
parent:      88254:82df66a091da
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Jan 02 12:22:30 2014 -0600
summary:
  remove brackets

files:
  Doc/library/inspect.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -752,7 +752,7 @@
    metatype is in use, cls will be the first element of the tuple.
 
 
-.. function:: getcallargs(func[, *args][, **kwds])
+.. function:: getcallargs(func, *args, **kwds)
 
    Bind the *args* and *kwds* to the argument names of the Python function or
    method *func*, as if it was called with them. For bound methods, bind also the

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


More information about the Python-checkins mailing list