~inkscape.dev/inkscape-devlibs/trunk

« back to all changes in this revision

Viewing changes to python/Lib/ctypes/macholib/__init__.py

  • Committer: Eduard Braun
  • Date: 2016-10-22 16:54:41 UTC
  • Revision ID: eduard.braun2@gmx.de-20161022165441-gfp6agtut9nh4p22
Update Python to version 2.7.12

Included modules:
  coverage 4.2
  lxml 3.6.4
  numpy 1.11.2
  scour 0.35
  six 1.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
######################################################################
2
 
#  This file should be kept compatible with Python 2.3, see PEP 291. #
3
 
######################################################################
4
 
"""
5
 
Enough Mach-O to make your head spin.
6
 
 
7
 
See the relevant header files in /usr/include/mach-o
8
 
 
9
 
And also Apple's documentation.
10
 
"""
11
 
 
12
 
__version__ = '1.0'
 
1
"""
 
2
Enough Mach-O to make your head spin.
 
3
 
 
4
See the relevant header files in /usr/include/mach-o
 
5
 
 
6
And also Apple's documentation.
 
7
"""
 
8
 
 
9
__version__ = '1.0'