pathmann / pyTSon

pyTSon is a plugin for the TeamSpeak 3 client, it offers a python interface for the plugin sdk
https://pytson.4qt.de
GNU General Public License v3.0
79 stars 12 forks source link

win32 used in 64 bit client? #98

Closed Bluscream closed 6 years ago

Bluscream commented 6 years ago

When i try

print("Python {} {} API: {}".format(sys.platform, sys.version, sys.api_version))

i get

Python win32 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] API: 1013

is there a special reason for that? Or is it just a display bug or is there just not enough performance improvement with the 64bit executable?

pathmann commented 6 years ago

What is wrong in your opinion? try the same with the windows python build.

Bluscream commented 6 years ago
>>> print("Python {} {} API: {}".format(sys.platform, sys.version, sys.api_version))
Python win32 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] API: 1013

my bad