diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-07-30 01:17:43 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-07-30 01:17:43 (GMT) |
commit | 50d5d4fe31d7f75021b8798d6b0c95362a10f4dd (patch) | |
tree | ca092f45def91ba61053e8b82966d5037994684d /Modules | |
parent | 1169011f6f29b4d332aa8c9ea543c64dc2e11bbb (diff) | |
download | cpython-50d5d4fe31d7f75021b8798d6b0c95362a10f4dd.zip cpython-50d5d4fe31d7f75021b8798d6b0c95362a10f4dd.tar.gz cpython-50d5d4fe31d7f75021b8798d6b0c95362a10f4dd.tar.bz2 |
Fix docstring to be consistent with parameter name (prefix)
Diffstat (limited to 'Modules')
-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 e5d1178..6f18da8 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5130,7 +5130,7 @@ posix_statvfs(PyObject *self, PyObject *args) PyDoc_STRVAR(posix_tempnam__doc__, "tempnam([dir[, prefix]]) -> string\n\n\ Return a unique name for a temporary file.\n\ -The directory and a short may be specified as strings; they may be omitted\n\ +The directory and a prefix may be specified as strings; they may be omitted\n\ or None if not needed."); static PyObject * |