summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/pythontex/depythontex.py
blob: 013e268241f1e4a3067218f38dd2b1ac1fb1c9b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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