Return the object as a pax global header block sequence.
(cls, pax_headers)
| 1133 | |
| 1134 | @classmethod |
| 1135 | def create_pax_global_header(cls, pax_headers): |
| 1136 | """Return the object as a pax global header block sequence. |
| 1137 | """ |
| 1138 | return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf-8") |
| 1139 | |
| 1140 | def _posix_split_name(self, name, encoding, errors): |
| 1141 | """Split a name longer than 100 chars into a prefix |
no test coverage detected