diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-01-16 13:18:42 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-01-16 13:18:42 (GMT) |
commit | 8135fd53656cac76a2bc01a4a03331a5bdc87b23 (patch) | |
tree | 71e4309c670a104f89c5284f9c9e02abcb74927f | |
parent | 4977ff0cf52b573bcbe9b20dba74a1a78a8e9966 (diff) | |
download | cpython-8135fd53656cac76a2bc01a4a03331a5bdc87b23.zip cpython-8135fd53656cac76a2bc01a4a03331a5bdc87b23.tar.gz cpython-8135fd53656cac76a2bc01a4a03331a5bdc87b23.tar.bz2 |
Make parameter names in docstring more mnemonic
-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 5c2f867..aa9f36c 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4981,7 +4981,7 @@ posix_dup(PyObject *self, PyObject *args) PyDoc_STRVAR(posix_dup2__doc__, -"dup2(fd, fd2)\n\n\ +"dup2(old_fd, new_fd)\n\n\ Duplicate file descriptor."); static PyObject * |