MCPcopy Index your code
hub / github.com/python/cpython / requires_remote_subprocess_debugging

Function requires_remote_subprocess_debugging

Lib/test/support/__init__.py:733–744  ·  view source on GitHub ↗

Skip tests that require remote subprocess debugging permissions. This also implies subprocess support, so no need to use both @requires_subprocess() and @requires_remote_subprocess_debugging().

()

Source from the content-addressed store, hash-verified

731
732
733def requires_remote_subprocess_debugging():
734 """Skip tests that require remote subprocess debugging permissions.
735
736 This also implies subprocess support, so no need to use both
737 @requires_subprocess() and @requires_remote_subprocess_debugging().
738 """
739 if not has_subprocess_support:
740 return unittest.skip("requires subprocess support")
741 return unittest.skipUnless(
742 has_remote_subprocess_debugging(),
743 "requires remote subprocess debugging permissions"
744 )
745
746
747# Does strftime() support glibc extension like '%4Y'?

Callers

nothing calls this directly

Calls 2

skipMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…