File: __init__.py

package info (click to toggle)
python-rlpycairo 0.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 391; makefile: 7
file content (10 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
'''
package using pycairo to allow better bitmap rendering
'''
__version__ = '0.3.0'
__all__ = (
        'GState',
        'pil2pict',
        )
from . gstate import *
from . pil2pict import pil2pict