~ubuntu-branches/debian/sid/ipython/sid

« back to all changes in this revision

Viewing changes to IPython/external/appnope/__init__.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2014-09-20 13:54:57 UTC
  • mfrom: (1.4.8)
  • Revision ID: package-import@ubuntu.com-20140920135457-yx7bhrl7ydjsrogy
Tags: 2.3.0-1
* New upstream bugfix release
* drop wx build dependency, not needed for tests anymore (Closes: #760691)
* bump standard to 3.9.6, no changes required
* refresh paths in debian/copyright and adapt to some removed files

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    from distutils.version import LooseVersion as V
9
9
 
10
10
    if sys.platform != "darwin" or V(platform.mac_ver()[0]) < V("10.9"):
11
 
        from _dummy import *
 
11
        from ._dummy import *
12
12
    else:
13
13
        from ._nope import *
14
14