File: __init__.py

package info (click to toggle)
obitools 1.2.13%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,652 kB
  • sloc: python: 18,199; ansic: 1,542; makefile: 98
file content (7 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7

def build_ext(*args,**kargs):
    '''
    Wrapper over the build_ext class to postpone the import of cython
    '''
    from .build_ext import build_ext as _build_ext
    return _build_ext(*args,**kargs)