MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_partial

Method test_partial

Lib/test/test_codecs.py:789–806  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

787 ill_formed_sequence = b"\xdc\x80"
788
789 def test_partial(self):
790 self.check_partial(
791 "\x00\xff\u0100\uffff\U00010000",
792 [
793 "",
794 "\x00",
795 "\x00",
796 "\x00\xff",
797 "\x00\xff",
798 "\x00\xff\u0100",
799 "\x00\xff\u0100",
800 "\x00\xff\u0100\uffff",
801 "\x00\xff\u0100\uffff",
802 "\x00\xff\u0100\uffff",
803 "\x00\xff\u0100\uffff",
804 "\x00\xff\u0100\uffff\U00010000",
805 ]
806 )
807
808 def test_errors(self):
809 tests = [

Callers

nothing calls this directly

Calls 1

check_partialMethod · 0.80

Tested by

no test coverage detected