fune/python/macholib/doc/MachO.rst
Mike Shal 09246b31f2 Bug 1265272 - Import macholib 1.7; r=ted,gerv
MozReview-Commit-ID: 1bPUuRQF2lQ
2016-04-21 11:46:07 -04:00

19 lines
660 B
ReStructuredText

:mod:`macholib.MachO` --- Utilities for reading and writing Mach-O headers
==========================================================================
.. module:: macholib.MachO
:synopsis: Utilities for reading and writing Mach-O headers
This module defines a class :class:`Macho`, which enables reading
and writing the Mach-O header of an executable file or dynamic
library on MacOS X.
.. class:: MachO(filename)
Creates a MachO object by reading the Mach-O headers from
*filename*.
The *filename* should refer to an existing file in Mach-O
format, and can refer to fat (universal) binaries.
.. note:: more information will be added later