Some updates to the documentation regarding Python 3 and wxPython 4.

This work is not complete and the install and build instructions need to be sanity checked and updated for modern versions of all three platforms.
This commit is contained in:
Cas Cremers
2020-10-28 08:41:44 +01:00
parent f68d52fba5
commit 7c00ddb2a9
5 changed files with 15 additions and 32 deletions

View File

@@ -396,7 +396,6 @@ class Scyther(object):
self.guessFileNames(spdl=spdl)
# Generate temporary files for the output.
# Requires Python 2.3 though.
(fde,fne) = tempfile.mkstemp() # errors
(fdo,fno) = tempfile.mkstemp() # output
if spdl:

View File

@@ -37,7 +37,7 @@ import sys
# Check for cElementTree presence. Otherwise use ElementTree.
useiter = True
try:
# python 2.5 has cElementTree in the core
# cElementTree is in Python since version 2.5
import xml.etree.cElementTree as cElementTree
except:
# try the old way