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