refactoring

This commit is contained in:
dcsena 2023-03-19 18:20:12 -04:00
commit 08599bea55

View file

@ -1,7 +1,9 @@
import sys
import platform
print(platform.python_implementation())
if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0':
if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0' and platform.python_implementation() != 'pypy':
import unittest
import yourbase