diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-04 23:35:52 +0300 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-04 23:35:52 +0300 |
| commit | a4c6badfddd11e3949364dddf5f5e965937c3885 (patch) | |
| tree | 14697399d3de5315d9d404e34d4258fd0c7c5841 | |
| parent | 1a6292194bdef5f4ee6298b95201b51564d1f93a (diff) | |
| download | cpython-git-a4c6badfddd11e3949364dddf5f5e965937c3885.tar.gz | |
Issue #23501: #include "clinic/posixmodule.c.h" was in the section skipped on Windows.
| -rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index a92d9604d4..7da1ab0eb8 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -10327,8 +10327,6 @@ conv_sysconf_confname(PyObject *arg, int *valuep) / sizeof(struct constdef)); } -#include "clinic/posixmodule.c.h" - /*[clinic input] os.sysconf -> long @@ -12071,6 +12069,8 @@ error: } +#include "clinic/posixmodule.c.h" + /*[clinic input] dump buffer [clinic start generated code]*/ |
