~ubuntu-branches/ubuntu/utopic/python-chaco/utopic

« back to all changes in this revision

Viewing changes to enthought/chaco/tools/base_zoom_tool.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-04-06 19:03:54 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110406190354-rwd55l2ezjecfo41
Tags: 3.4.0-2
d/rules: fix pyshared directory path (Closes: #621116)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
""" Defines the base class for various types of zoom tools.
2
2
"""
 
3
import warnings
 
4
warnings.warn("BaseZoomTool has been deprecated, use BetterZoomTool", DeprecationWarning)
 
5
 
3
6
 
4
7
from numpy import allclose, inf
5
8