[Python-checkins] cpython (3.5): Issue #26716: Regenerate Argument Clinic code.

serhiy.storchaka python-checkins at python.org
Thu Apr 14 05:40:38 EDT 2016


https://hg.python.org/cpython/rev/9ffe055f2b0e
changeset:   100965:9ffe055f2b0e
branch:      3.5
parent:      100963:f840608f79da
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Thu Apr 14 12:28:01 2016 +0300
summary:
  Issue #26716: Regenerate Argument Clinic code.

files:
  Modules/clinic/fcntlmodule.c.h |  4 ++--
  Modules/fcntlmodule.c          |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Modules/clinic/fcntlmodule.c.h b/Modules/clinic/fcntlmodule.c.h
--- a/Modules/clinic/fcntlmodule.c.h
+++ b/Modules/clinic/fcntlmodule.c.h
@@ -145,7 +145,7 @@
 "\n"
 "When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with\n"
 "LOCK_NB to avoid blocking on lock acquisition.  If LOCK_NB is used and the\n"
-"lock cannot be acquired, an IOError will be raised and the exception will\n"
+"lock cannot be acquired, an OSError will be raised and the exception will\n"
 "have an errno attribute set to EACCES or EAGAIN (depending on the operating\n"
 "system -- for portability, check for either value).\n"
 "\n"
@@ -182,4 +182,4 @@
 exit:
     return return_value;
 }
-/*[clinic end generated code: output=92963b631d00f0fe input=a9049054013a1b77]*/
+/*[clinic end generated code: output=b7d6e8fc2ad09c48 input=a9049054013a1b77]*/
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -360,7 +360,7 @@
 static PyObject *
 fcntl_lockf_impl(PyModuleDef *module, int fd, int code, PyObject *lenobj,
                  PyObject *startobj, int whence)
-/*[clinic end generated code: output=31af35eba08b9af7 input=9c594391de821f24]*/
+/*[clinic end generated code: output=31af35eba08b9af7 input=3a5dc01b04371f1a]*/
 {
     int ret;
 

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


More information about the Python-checkins mailing list