diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-09 11:33:53 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-09 11:33:53 +0200 |
| commit | 1edcd50b5d19514b054b6296353ce11a9fd3bac2 (patch) | |
| tree | dbe0e234e29fcb3dc3111315bd3e1ff56f75e3d0 /Modules | |
| parent | d7e44b61e7066f1049a692555e77382042c98ea4 (diff) | |
| parent | d0d51542511239a2a4b34e6b465d003ccf856a9c (diff) | |
| download | cpython-git-1edcd50b5d19514b054b6296353ce11a9fd3bac2.tar.gz | |
Merge 3.5: fcntl doc
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/fcntlmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 97ff07c12e..e61c93095c 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -344,7 +344,7 @@ of the following values: When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with LOCK_NB to avoid blocking on lock acquisition. If LOCK_NB is used and the -lock cannot be acquired, an IOError will be raised and the exception will +lock cannot be acquired, an OSError will be raised and the exception will have an errno attribute set to EACCES or EAGAIN (depending on the operating system -- for portability, check for either value). |
