py icon indicating copy to clipboard operation
py copied to clipboard

Python development support library (note: maintenance only)

Results 16 py issues
Sort by recently updated
recently updated
newest added
trafficstars

1. waitfinish() assumes that if the forked child process exited with exitstatus == 0, that _child() ran to completion and wrote out the retval. This is not true if the...

`waitfinish()` assumes that if the forked child process exited with `exitstatus == 0`, that `_child()` ran to completion and wrote out the `retval`. This is not true if the function...

Would be great if CI could tests these combinations as well as more distros use pytest 4 (or even 5 already) and python 3.8

Fork failures are not uncommon on Cygwin, which causes an exception in the constructor. Unfortunately, cleaning up the partially-initialized instance calls the `__del__` method, which then raises another exception because...

Without this change I get pytest errors on MSYS2 like this: ``` =================================== ERRORS ==================================== _______________ ERROR collecting test_x.py ________________ import file mismatch: imported module 'f.test_x' has this __file__ attribute:...

This patch should fix such errors/warnings as: - raises / warns with a string as the second argument Deprecated since version 4.1. - pytest_funcarg__ prefix Removed in version 4.0. -...