]> granicus.if.org Git - python/commitdiff
Issue #28585: Restored docstring of os._isdir().
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 8 Nov 2016 18:21:22 +0000 (20:21 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Tue, 8 Nov 2016 18:21:22 +0000 (20:21 +0200)
Modules/clinic/posixmodule.c.h
Modules/posixmodule.c

index 1bbfc062d8241e62f660d7f9cc2f04846ff26e88..b3521d81c6aae2765ccacec258d351d881ab8311 100644 (file)
@@ -954,7 +954,8 @@ exit:
 PyDoc_STRVAR(os__isdir__doc__,
 "_isdir($module, path, /)\n"
 "--\n"
-"\n");
+"\n"
+"Return true if the pathname refers to an existing directory.");
 
 #define OS__ISDIR_METHODDEF    \
     {"_isdir", (PyCFunction)os__isdir, METH_O, os__isdir__doc__},
@@ -5784,4 +5785,4 @@ exit:
 #ifndef OS_SET_HANDLE_INHERITABLE_METHODDEF
     #define OS_SET_HANDLE_INHERITABLE_METHODDEF
 #endif /* !defined(OS_SET_HANDLE_INHERITABLE_METHODDEF) */
-/*[clinic end generated code: output=9d5f831b23145d1e input=a9049054013a1b77]*/
+/*[clinic end generated code: output=7690b72549d2524e input=a9049054013a1b77]*/
index d73762431a447a6cec9519f47597ece339795fa6..5a23824a1ae0419f5154362e85f4e3497a71b052 100644 (file)
@@ -3865,20 +3865,18 @@ os__getfinalpathname_impl(PyObject *module, PyObject *path)
     return result;
 }
 
-PyDoc_STRVAR(posix__isdir__doc__,
-"Return true if the pathname refers to an existing directory.");
-
 /*[clinic input]
 os._isdir
 
     path: path_t
     /
 
+Return true if the pathname refers to an existing directory.
 [clinic start generated code]*/
 
 static PyObject *
 os__isdir_impl(PyObject *module, path_t *path)
-/*[clinic end generated code: output=75f56f32720836cb input=e794f12faab62a2a]*/
+/*[clinic end generated code: output=75f56f32720836cb input=5e0800149c0ad95f]*/
 {
     DWORD attributes;