summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/pythontex/depythontex.py
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/pythontex/depythontex.py')
-rwxr-xr-xMaster/texmf-dist/scripts/pythontex/depythontex.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/pythontex/depythontex.py b/Master/texmf-dist/scripts/pythontex/depythontex.py
new file mode 100755
index 00000000000..013e268241f
--- /dev/null
+++ b/Master/texmf-dist/scripts/pythontex/depythontex.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+'''
+This is the PythonTeX wrapper script. It automatically detects the version
+of Python, and then imports the correct code from depythontex2.py or
+depythontex3.py.
+
+Copyright (c) 2013, Geoffrey M. Poore
+All rights reserved.
+Licensed under the BSD 3-Clause License:
+ http://www.opensource.org/licenses/BSD-3-Clause
+
+'''
+
+import sys
+if sys.version_info[0] == 2:
+ import depythontex2 as depythontex
+elif sys.version_info[0] == 3:
+ import depythontex3 as depythontex