We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e2d4e commit fff14ceCopy full SHA for fff14ce
nodebox/__init__.py
@@ -6,14 +6,16 @@
6
# animation & motion tweening, and simple 2D physics.
7
8
__author__ = "Tom De Smedt, Frederik De Bleser"
9
-__version__ = "1.6"
10
-__copyright__ = "Copyright (c) 2008-2010 City In A Bottle (cityinabottle.org)"
+__version__ = "1.7"
+__copyright__ = "Copyright (c) 2008-2012 City In A Bottle (cityinabottle.org)"
11
__license__ = "BSD"
12
13
-try: import psyco; psyco.profile()
14
-except:
15
- try: from ext import psyco; psyco.profile()
+import sys
+if sys.version_info < (2,7):
+ try: import psyco; psyco.profile()
16
except:
17
- pass
+ try: from ext import psyco; psyco.profile()
18
+ except:
19
+ pass
20
21
import nodebox
0 commit comments