File: core

package info (click to toggle)
gyoto 2.0.2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,444 kB
  • sloc: cpp: 42,330; sh: 4,512; python: 3,436; xml: 2,865; makefile: 691; ansic: 346
file content (10 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
"""
The General relativitY Orbit Tracer of paris Observatory
"""
# This is necessary at least on Linux to let the libgyoto symbols be
# visible from the libgyoto-stdplug (and other plug-ins) symbols.
from sys import getdlopenflags as _gyoto_tmp_getdlopenflags, setdlopenflags as _gyoto_tmp_setdlopenflags
from ctypes import RTLD_GLOBAL as _gyoto_tmp_RTLD_GLOBAL
_gyoto_tmp_setdlopenflags(_gyoto_tmp_getdlopenflags() | _gyoto_tmp_RTLD_GLOBAL)
del _gyoto_tmp_getdlopenflags, _gyoto_tmp_setdlopenflags, _gyoto_tmp_RTLD_GLOBAL