This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: missing attributes
Type: Stage: resolved
Components: Tests, Windows Versions: Python 3.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: neyuru, paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2019-01-09 05:13 by neyuru, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
run.txt neyuru, 2019-01-09 05:13 full verbose on rt.bat -x64
Messages (3)
msg333282 - (view) Author: Jorge Ramos (neyuru) * Date: 2019-01-09 05:13
while running <rt.bat -x64>:

0:04:26 [136/407] test_fork1
test_fork1 skipped -- object <module 'os' from 'E:\\RepoGiT\\3.6\\lib\\os.py'> has no attribute 'fork'
0:11:56 [384/407/1] test_wait4 -- test_wait3 skipped
test_wait4 skipped -- object <module 'os' from 'E:\\RepoGiT\\3.6\\lib\\os.py'> has no attribute 'fork'

see attached file
msg333283 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2019-01-09 05:16
This is expected; `os.fork` does not exist on Windows.
msg333285 - (view) Author: Jorge Ramos (neyuru) * Date: 2019-01-09 05:19
Got it, maybe the warnings should be more explanatory, like this one:

0:06:17 [219/407/1] test_multiprocessing_fork
test_multiprocessing_fork skipped -- fork is not available on Windows
0:06:17 [220/407/1] test_multiprocessing_forkserver -- test_multiprocessing_fork skipped
test_multiprocessing_forkserver skipped -- forkserver is not available on Windows

just my 2 cents.
History
Date User Action Args
2022-04-11 14:59:10adminsetgithub: 79876
2019-01-09 05:19:35neyurusetmessages: + msg333285
2019-01-09 05:16:12zach.waresetstatus: open -> closed
resolution: not a bug
messages: + msg333283

stage: resolved
2019-01-09 05:13:54neyurucreate