diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-07-28 20:24:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-28 20:24:34 +0200 |
commit | 07129deaeb767528e550344e1134f2739c89bdd0 (patch) | |
tree | 37210f9fd080a28dff7df83a2f787b9671157325 /core | |
parent | 90298ddf01622ec4d8a50deaf7c351a766b9e78a (diff) | |
parent | 8fd337e2df27cec7dafa8bda5fcc03dfe6930a51 (diff) |
Merge pull request #20544 from dragmz/fix-py37-windows-build
fix windows build using python 3.7
Diffstat (limited to 'core')
-rw-r--r-- | core/make_binders.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/make_binders.py b/core/make_binders.py index f1a10829a3..4c61b90d99 100644 --- a/core/make_binders.py +++ b/core/make_binders.py @@ -1,6 +1,4 @@ # -*- coding: ibm850 -*- -from platform_methods import subprocess_main - template_typed = """ #ifdef TYPED_METHOD_BIND @@ -274,4 +272,5 @@ def run(target, source, env): if __name__ == '__main__': + from platform_methods import subprocess_main subprocess_main(globals()) |