commit | ca56dd4767617a2f5e946130de4beb06442a5cd5 | [log] [tgz] |
---|---|---|
author | Martin Panter <vadmium+py@gmail.com> | Sat Sep 17 07:54:55 2016 +0000 |
committer | Martin Panter <vadmium+py@gmail.com> | Sat Sep 17 07:54:55 2016 +0000 |
tree | 8697f0e83d6b4f3758eaf4b89abc944b6e6db71f | |
parent | fd2f85d6e4e8abc9c943cf56cf45527d522c7882 [diff] [blame] |
Issue #28139: Fix messed up indentation Also update the classmethod and staticmethod doc strings and comments to match the RST documentation.
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 9d8b587..988d942 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c
@@ -21,7 +21,7 @@ int fd = PyObject_AsFileDescriptor(object); if (fd < 0) - return 0; + return 0; *target = fd; return 1; }