Message376189
| Author | hafizbilal100 |
|---|---|
| Recipients | hafizbilal100 |
| Date | 2020-09-01.12:32:23 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1598963543.37.0.281772531598.issue41686@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Hi,
time.sleep() function is not working on Windows host if I use C API Py_InitializeEx(0) function.
Issue could be reproduce with following simple example.
int main()
{
Py_InitializeEx(0);
PyRun_SimpleString("import time \n"
"start = time.time() \n"
"time.sleep(4) \n"
"print('elapsed: %d' % (time.time() - start))");
}
output:
elapsed: 0
Note, issue is not reproduce on Linux host. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-09-01 12:32:23 | hafizbilal100 | set | recipients: + hafizbilal100 |
| 2020-09-01 12:32:23 | hafizbilal100 | set | messageid: <1598963543.37.0.281772531598.issue41686@roundup.psfhosted.org> |
| 2020-09-01 12:32:23 | hafizbilal100 | link | issue41686 messages |
| 2020-09-01 12:32:23 | hafizbilal100 | create | |